Lines Matching defs:full_path
1225 static char full_path[MAXPATHLEN];
1249 xstrlcpy(full_path, str, sizeof(full_path));
1250 len = strlen(full_path);
1251 if (full_path[len - 1] != '/') /* add trailing "/" if needed */
1252 xstrlcat(full_path, "/", sizeof(full_path));
1253 xstrlcat(full_path, map, sizeof(full_path));
1254 if (access(full_path, R_OK) == 0)
1255 return full_path;