Lines Matching refs:method
310 newroot->method = null_method; in new_cvsroot_t()
378 char *method = ++cvsroot_copy; local
389 if (! (p = strchr (method, ':')))
400 if (strcmp (method, "local") == 0)
401 newroot->method = local_method;
402 else if (strcmp (method, "pserver") == 0)
403 newroot->method = pserver_method;
404 else if (strcmp (method, "kserver") == 0)
405 newroot->method = kserver_method;
406 else if (strcmp (method, "gserver") == 0)
407 newroot->method = gserver_method;
408 else if (strcmp (method, "server") == 0)
409 newroot->method = server_method;
410 else if (strcmp (method, "ext") == 0)
411 newroot->method = ext_method;
412 else if (strcmp (method, "fork") == 0)
413 newroot->method = fork_method;
427 newroot->method = ((*cvsroot_copy != '/' && strchr (cvsroot_copy, '/'))
437 newroot->isremote = (newroot->method != local_method);
441 if ((newroot->method != local_method)
442 && (newroot->method != fork_method))
562 if (newroot->method != local_method)
572 if (newroot->method == fork_method)
590 switch (newroot->method)
761 newroot->method = local_method;
817 printf ("current_parsed_root->method: %s\n", method_names[current_parsed_root->method]);