Home | History | Annotate | Download | only in coregrind

Lines Matching refs:fullname

84    char *fullname;
92 /* Make the size of the FULLNAME buffer large enough. */
95 fullname = malloc(need);
96 if (fullname == NULL)
97 barf("malloc of fullname failed.");
103 strcpy(fullname, path);
108 strncpy(fullname, path, colon - path);
109 fullname[colon - path] = '\0';
113 strcat(fullname, "/");
114 strcat(fullname, clientname);
116 if (access(fullname, R_OK|X_OK) == 0)
117 return fullname;
119 free(fullname);