/external/jemalloc/include/jemalloc/internal/ |
rb.h | 467 } path[sizeof(void *) << 4], *pathp; \ 471 for (pathp = path; pathp->node != NULL; pathp++) { \ 472 int cmp = pathp->cmp = a_cmp(node, pathp->node); \ 475 pathp[1].node = rbtn_left_get(a_type, a_field, \ 476 pathp->node); \ 478 pathp[1].node = rbtn_right_get(a_type, a_field, \ 479 pathp->node); [all...] |
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_windows_test.go | 38 pathp, _ := syscall.UTF16PtrFromString(path) 39 h, err := syscall.FindFirstFile(pathp, &(x.fd))
|
syscall_windows.go | 251 pathp, err := UTF16PtrFromString(path) 289 h, e := CreateFile(pathp, access, sharemode, sa, createmode, FILE_ATTRIBUTE_NORMAL, 0) 403 pathp, err := UTF16PtrFromString(path) 407 return SetCurrentDirectory(pathp) 411 pathp, err := UTF16PtrFromString(path) 415 return CreateDirectory(pathp, nil) 419 pathp, err := UTF16PtrFromString(path) 423 return RemoveDirectory(pathp) 427 pathp, err := UTF16PtrFromString(path) 431 return DeleteFile(pathp) [all...] |
syscall_linux_arm.go | 120 pathp, err := BytePtrFromString(path) 124 _, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_windows_test.go | 38 pathp, _ := syscall.UTF16PtrFromString(path) 39 h, err := syscall.FindFirstFile(pathp, &(x.fd))
|
syscall_windows.go | 251 pathp, err := UTF16PtrFromString(path) 289 h, e := CreateFile(pathp, access, sharemode, sa, createmode, FILE_ATTRIBUTE_NORMAL, 0) 403 pathp, err := UTF16PtrFromString(path) 407 return SetCurrentDirectory(pathp) 411 pathp, err := UTF16PtrFromString(path) 415 return CreateDirectory(pathp, nil) 419 pathp, err := UTF16PtrFromString(path) 423 return RemoveDirectory(pathp) 427 pathp, err := UTF16PtrFromString(path) 431 return DeleteFile(pathp) [all...] |
syscall_linux_arm.go | 120 pathp, err := BytePtrFromString(path) 124 _, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))
|
/external/dtc/ |
fdtget.c | 155 const char *pathp; local 162 pathp = fdt_get_name(blob, node, NULL); 164 if (pathp == NULL) 165 pathp = "/* NULL pointer error */"; 166 if (*pathp == '\0') 167 pathp = "/"; /* root is nameless */ 169 puts(pathp);
|
/prebuilts/go/darwin-x86/src/os/ |
types_windows.go | 76 pathp, err := syscall.UTF16PtrFromString(path) 80 h, err := syscall.CreateFile(pathp, 0, 0, nil, syscall.OPEN_EXISTING, syscall.FILE_FLAG_BACKUP_SEMANTICS, 0)
|
file_windows.go | 126 pathp, e := syscall.UTF16PtrFromString(path) 130 e = syscall.GetFileAttributesEx(pathp, syscall.GetFileExInfoStandard, (*byte)(unsafe.Pointer(&fa)))
|
/prebuilts/go/linux-x86/src/os/ |
types_windows.go | 76 pathp, err := syscall.UTF16PtrFromString(path) 80 h, err := syscall.CreateFile(pathp, 0, 0, nil, syscall.OPEN_EXISTING, syscall.FILE_FLAG_BACKUP_SEMANTICS, 0)
|
/hardware/invensense/6515/libsensors_iio/ |
PressureSensor.IIO.secondary.h | 68 char* pathP;
|
PressureSensor.IIO.secondary.cpp | 185 pathP = (char*)calloc(PRESSURE_MAX_SYSFS_ATTRB, 187 if (pathP == NULL) 190 char *sptr = pathP;
|
CompassSensor.IIO.9150.cpp | 121 free(pathP); 384 pathP = (char*)calloc(COMPASS_MAX_SYSFS_ATTRB, 386 if (pathP == NULL) 392 char *sptr = pathP;
|
CompassSensor.IIO.9150.h | 92 char *pathP;
|
CompassSensor.IIO.primary.h | 100 char *pathP;
|
CompassSensor.IIO.primary.cpp | 217 free(pathP); 527 pathP = (char*)malloc( 529 sptr = pathP;
|
/hardware/invensense/65xx/libsensors_iio/ |
PressureSensor.IIO.secondary.h | 68 char* pathP;
|
PressureSensor.IIO.secondary.cpp | 186 pathP = (char*)calloc(PRESSURE_MAX_SYSFS_ATTRB, 188 if (pathP == NULL) 194 char *sptr = pathP;
|
CompassSensor.IIO.9150.cpp | 121 free(pathP); 352 pathP = (char*)calloc(COMPASS_MAX_SYSFS_ATTRB, 354 if (pathP == NULL) 360 char *sptr = pathP;
|
CompassSensor.IIO.9150.h | 92 char *pathP;
|
CompassSensor.IIO.primary.h | 100 char *pathP;
|
CompassSensor.IIO.primary.cpp | 217 free(pathP); 493 pathP = (char*)malloc( 495 sptr = pathP;
|
/external/elfutils/src/ |
ld.c | 265 static void add_rxxpath (struct pathelement **pathp, const char *str); [all...] |
/external/icu/icu4c/source/common/ |
uresdata.cpp | 886 char *pathP = *path, *nextSepP = *path; 894 if(!uprv_strlen(pathP)) { 903 while(nextSepP && *pathP && t1 != RES_BOGUS && URES_IS_CONTAINER(type)) { 907 nextSepP = uprv_strchr(pathP, RES_PATH_SEPARATOR); 912 if(nextSepP == pathP) { 919 *path = uprv_strchr(pathP, 0); 925 *key = pathP; 929 indexR = uprv_strtol(pathP, &closeIndex, 10); 936 indexR = uprv_strtol(pathP, &closeIndex, 10); 948 /* position pathP to next resource key/index * [all...] |