HomeSort by relevance Sort by last modified time
    Searched defs:pathname (Results 76 - 100 of 608) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/debugfs/
debugfs.c 1411 char *pathname = NULL; local
    [all...]
  /external/freetype/include/freetype/
freetype.h 2140 FT_String* pathname; member in struct:FT_Open_Args_
    [all...]
  /external/iproute2/include/uapi/linux/
bpf.h 217 __aligned_u64 pathname; member in struct:bpf_attr::__anon21862
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 106 typedef struct pathname { struct
    [all...]
  /external/python/cpython2/Python/
import.c 700 PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
718 if (pathname != NULL) {
719 v = PyString_FromString(pathname);
753 /* Given a pathname for a Python source file, fill a buffer with the
754 pathname for the corresponding compiled file. Return the pathname
759 make_compiled_pathname(char *pathname, char *buf, size_t buflen)
761 size_t len = strlen(pathname);
768 if (len >= 4 && strcmp(&pathname[len-4], ".pyw") == 0)
771 memcpy(buf, pathname, len)
2972 char *pathname; local
3109 char *pathname; local
3131 char *pathname; local
3153 char *pathname; local
3174 char *pathname; local
3214 char *pathname; local
    [all...]
  /external/selinux/libselinux/src/android/
android_platform.c 1468 char *pathname = NULL, *pathdnamer = NULL, *pathdname, *pathbname; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
action.c 92 extern char *pathname(struct dir_ent *);
887 action_data.pathname = strdup(pathname(dir_ent));
907 free(action_data.pathname);
921 action_data.pathname = strdup(pathname(dir_ent));
931 free(action_data.pathname);
937 free(action_data.pathname);
975 int eval_exclude_actions(char *name, char *pathname, char *subpath,
982 action_data.pathname = pathname
1577 char *name, *pathname; local
    [all...]
unsquashfs.c 520 int print_filename(char *pathname, struct inode *inode)
530 printf("%s\n", pathname);
590 t->tm_mday, t->tm_hour, t->tm_min, pathname);
824 int set_attributes(char *pathname, int mode, uid_t uid, gid_t guid, time_t time,
829 if(utime(pathname, &times) == -1) {
831 pathname, strerror(errno));
836 if(chown(pathname, uid, guid) == -1) {
838 "on %s, because %s\n", pathname,
845 if((set_mode || (mode & 07000)) && chmod(pathname, (mode_t) mode) == -1) {
847 pathname, strerror(errno))
1496 char *pathname; local
1586 char *pathname; local
    [all...]
mksquashfs.c 205 struct pathname *paths;
208 struct pathname { struct
215 struct pathname *path[0];
220 struct pathname *path = NULL;
221 struct pathname *stickypath = NULL;
334 struct dir_info *scan1_opendir(char *pathname, char *subpath, int depth);
782 char *_pathname(struct dir_ent *dir_ent, char *pathname, int *size)
784 if(pathname == NULL) {
785 pathname = malloc(ALLOC_SIZE);
786 if(pathname == NULL
814 char *pathname(struct dir_ent *dir_ent) function
816 static char *pathname = NULL; local
828 static char *pathname = NULL; local
    [all...]
  /external/strace/
strace.c 1164 char *pathname; member in struct:exec_params
1222 execv(params->pathname, params->argv);
1296 char pathname[PATH_MAX]; local
1303 if (filename_len > sizeof(pathname) - 1) {
1308 strcpy(pathname, filename);
1317 strcpy(pathname, filename);
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 542 HChar *pathname; /* NULL if not a regular file or unknown */ member in struct:OpenFd
570 if(i->pathname)
571 VG_(free) (i->pathname);
581 tid is -1, this indicates an inherited fd. If the pathname is NULL,
587 const HChar *pathname)
598 if (i->pathname) VG_(free)(i->pathname);
616 i->pathname = VG_(strdup)("syswrap.rfdowgn.2", pathname);
658 return i->pathname;
    [all...]
syswrap-solaris.c 745 HChar *pathname; /* NULL if unknown. */ member in struct:OpenDoor::__anon42487::__anon42488
786 if (d->pathname) {
787 VG_(free)(d->pathname);
801 d->pathname = NULL;
841 if ((d->server == TRUE) && (d->pathname != NULL))
842 VG_(free)(d->pathname);
852 static void door_record_server_fattach(Int fd, HChar *pathname)
860 if (d->pathname != NULL)
861 VG_(free)(d->pathname);
862 d->pathname = VG_(strdup)("syswrap.door_server_fattach.1", pathname)
8884 const HChar *pathname; local
9027 const HChar *pathname = ML_(find_fd_recorded_by_fd)(fd); local
9123 const HChar *pathname = (open_door != NULL) ? open_door->pathname : NULL; local
9222 const HChar *pathname = (open_door != NULL) ? open_door->pathname : NULL; local
    [all...]
  /packages/services/BuiltInPrintService/jni/lib/
lib_wprint.c 141 char *pathname; member in struct:__anon53059
440 _job_queue[index].pathname = ptr;
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
freetype.h 1951 FT_String* pathname; member in struct:FT_Open_Args_
    [all...]
  /bionic/libc/kernel/uapi/linux/
bpf.h 183 __aligned_u64 pathname; member in struct:bpf_attr::__anon489
  /external/e2fsprogs/contrib/
fsstress.c 133 typedef struct pathname { struct
    [all...]
  /external/iproute2/lib/
bpf.c 781 static int bpf_obj_get(const char *pathname, enum bpf_prog_type type)
786 if (strlen(pathname) > 2 && pathname[0] == 'm' &&
787 pathname[1] == ':' && bpf_get_work_dir(type)) {
789 bpf_get_work_dir(type), pathname + 2);
790 pathname = tmp;
793 attr.pathname = bpf_ptr_to_u64(pathname);
798 static int bpf_obj_pinned(const char *pathname, enum bpf_prog_type type)
800 int prog_fd = bpf_obj_get(pathname, type)
1373 char pathname[PATH_MAX]; local
1432 char pathname[PATH_MAX]; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
bpf.h 269 __aligned_u64 pathname; member in struct:bpf_attr::__anon22695
  /external/python/cpython2/PC/bdist_wininst/
install.c 121 char *ini_file; /* Full pathname of ini-file */
161 /* lParam: points to pathname */
689 * 2 if no install-script is specified in pathname
697 do_run_installscript(HINSTANCE hPython, char *pathname, int argc, char **argv)
720 if (pathname == NULL || pathname[0] == '\0')
723 fh = open(pathname, _O_RDONLY);
726 pathname);
756 run_installscript(char *pathname, int argc, char **argv, char **pOutput)
786 result = do_run_installscript(hPython, pathname, argc, argv)
1378 char pathname[_MAX_PATH]; local
2418 char *pathname = strchr(line, ':'); local
2429 char *pathname = strchr(line, ':'); local
    [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c 121 char *ini_file; /* Full pathname of ini-file */
168 /* lParam: points to pathname */
719 * 2 if no install-script is specified in pathname
727 do_run_installscript(HINSTANCE hPython, char *pathname, int argc, char **argv)
751 if (pathname == NULL || pathname[0] == '\0')
754 fh = open(pathname, _O_RDONLY | O_NOINHERIT);
757 pathname);
798 run_installscript(char *pathname, int argc, char **argv, char **pOutput)
828 result = do_run_installscript(hPython, pathname, argc, argv)
1422 char pathname[_MAX_PATH]; local
2447 char *pathname = strchr(line, ':'); local
2458 char *pathname = strchr(line, ':'); local
    [all...]
  /prebuilts/sdk/current/multidex/library/
android-support-multidex.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/24.4.0-beta6/
traceview-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/24.5.0/
traceview-24.5.0.jar 

Completed in 772 milliseconds

1 2 34 5 6 7 8 91011>>