Home | History | Annotate | Download | only in testing

Lines Matching full:path

56 char* breakpad_mkdtemp(char* path) {
57 if (path == NULL) {
62 // 'path' must be terminated with six 'X'
65 char* path_end = path + strlen(path);
67 if (static_cast<size_t>(path_end - path) < kSuffixLen ||
73 // If 'path' contains a directory separator, check that it exists to
75 char* sep = strrchr(path, '/');
80 ret = stat(path, &st);
81 *sep = '/'; // restore full path.
97 if (mkdir(path, 0700) == 0)
98 return path; // Success