Searched defs:relpath (Results 1 - 12 of 12) sorted by relevance

/external/icu/tools/srcgen/javadoc_patches/
H A Dcommon.sh25 relpath() { function
26 python -c "import os.path; print os.path.relpath('$1','${2:-$PWD}')" ;
/external/ltp/testcases/kernel/syscalls/mkdirat/
H A Dmkdirat01.c44 static char relpath[256]; variable
56 {&dir_fd, relpath, 0, 0},
58 {&fd_atcwd, relpath, 0, 0},
59 {&fd, relpath, -1, ENOTDIR},
60 {&fd_invalid, relpath, -1, EBADF},
94 sprintf(relpath, "mkdiratrelpath%d_%d", getpid(), i);
/external/python/cpython2/Lib/
H A Dntpath.py22 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
511 def relpath(path, start=curdir): function
H A Dposixpath.py27 "devnull","realpath","supports_unicode_filenames","relpath"]
424 def relpath(path, start=curdir): function
/external/python/cpython3/Lib/
H A Dntpath.py19 "extsep","devnull","realpath","supports_unicode_filenames","relpath",
559 def relpath(path, start=None): function
601 genericpath._check_arg_types('relpath', path, start)
H A Dposixpath.py25 "devnull","realpath","supports_unicode_filenames","relpath",
444 def relpath(path, start=None): function
476 genericpath._check_arg_types('relpath', path, start)
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dcpuinfo.c316 static int find_domain_cpusets(char *relpath) argument
322 if (relpath == NULL) {
333 if (cpuset_query(cp, relpath)) {
348 while_each_childdir(cpuset_mountpoint(), relpath, c_relpath, local
H A Dlibcpuset.c2013 /* Create (if new set) or modify cpuset 'cp' at location 'relpath' */
2014 static int cr_or_mod(const char *relpath, const struct cpuset *cp, int new) argument
2028 fullpath(buf, sizeof(buf), relpath);
2039 if (cpuset_query(cp_sav, relpath) < 0)
2064 /* Create cpuset 'cp' at location 'relpath' */
2065 int cpuset_create(const char *relpath, const struct cpuset *cp) argument
2067 return cr_or_mod(relpath, cp, 1);
2071 int cpuset_delete(const char *relpath) argument
2078 fullpath(buf, sizeof(buf), relpath);
2088 int cpuset_query(struct cpuset *cp, const char *relpath) argument
2172 cpuset_modify(const char *relpath, const struct cpuset *cp) argument
2434 cpuset_nuke(const char *relpath, unsigned int seconds) argument
2590 read_task_file(const char *relpath, struct pidblock **ppbhead) argument
2651 cpuset_init_pidlist(const char *relpath, int recursiveflag) argument
2732 cpuset_move(pid_t pid, const char *relpath) argument
2747 cpuset_move_all(struct cpuset_pidlist *pl, const char *relpath) argument
2876 cpuset_migrate(pid_t pid, const char *relpath) argument
2905 cpuset_migrate_all(struct cpuset_pidlist *pl, const char *relpath) argument
2936 cpuset_reattach(const char *relpath) argument
3211 char *relpath; local
[all...]
/external/perf_data_converter/src/
H A Dperf_data_converter_test.cc149 // Assumes relpath does not begin with a '/'
150 string GetResource(const string& relpath) { argument
153 string resdir = cwd + "/" + relpath;
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c1042 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) { argument
1048 if (relpath != NULL) {
1050 strcat(path, relpath);
1055 if (strstr(relpath, ".tab") == NULL && strcmp(relpath, "Etc/Unknown") != 0) {
1059 if ((pzonename = malloc(strlen(relpath) + 1)) == NULL) {
1062 strcpy(pzonename, relpath);
1083 if (relpath != NULL) {
1084 strcpy(subpath, relpath);
/external/kmod/tools/
H A Ddepmod.c795 const char *relpath; /* path relative to '$ROOT/lib/modules/$VER/' */ member in struct:mod
796 char *uncrelpath; /* same as relpath but ending in .ko */
948 mod->relpath = mod->path + cfg->dirnamelen + 1;
950 mod->relpath = NULL;
958 if (mod->relpath != NULL) {
959 size_t uncrelpathlen = lastslash - mod->relpath + modnamesz
961 mod->uncrelpath = memdup(mod->relpath, uncrelpathlen + 1);
1059 const char *relpath; local
1072 relpath = path + depmod->cfg->dirnamelen + 1;
1073 DBG("try %s (%s)\n", relpath, modnam
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1316 const char* relpath = "."; local
1318 char* res = realpath(relpath, path);
1324 const char* relpath = "."; local
1325 char* res = realpath(relpath, NULL);
1335 const char* relpath = "."; local
1336 char* res = canonicalize_file_name(relpath);

Completed in 1076 milliseconds