Home | History | Annotate | Download | only in coregrind

Lines Matching defs:fullname

88    char *fullname;
96 /* Make the size of the FULLNAME buffer large enough. */
99 fullname = malloc(need);
100 if (fullname == NULL)
101 barf("malloc of fullname failed.");
107 strcpy(fullname, path);
112 strncpy(fullname, path, colon - path);
113 fullname[colon - path] = '\0';
117 strcat(fullname, "/");
118 strcat(fullname, clientname);
120 if (access(fullname, R_OK|X_OK) == 0)
121 return fullname;
123 free(fullname);