Searched refs:buf64 (Results 1 - 8 of 8) sorted by relevance
/external/valgrind/coregrind/m_aspacemgr/ |
H A D | aspacemgr-common.c | 331 struct vki_stat64 buf64; local 332 res = VG_(do_syscall2)(__NR_fstat64, fd, (UWord)&buf64); 334 *dev = (ULong)buf64.st_dev; 335 *ino = (ULong)buf64.st_ino; 336 *mode = (UInt) buf64.st_mode; 350 struct vki_stat64 buf64; 351 SysRes res = VG_(do_syscall4)(__NR_fstatat64, fd, 0, (UWord)&buf64, 0); 353 struct vki_stat buf64; 354 SysRes res = VG_(do_syscall4)(__NR_fstatat, fd, 0, (UWord)&buf64, 0); 359 *dev = (ULong)buf64 [all...] |
/external/curl/tests/server/ |
H A D | getpart.c | 194 unsigned char *buf64 = NULL; local 201 error = (int) Curl_base64_decode(*buf, &buf64, &src_len); 212 free(buf64); 218 memcpy(*buf, buf64, src_len); 222 free(buf64);
|
/external/valgrind/coregrind/ |
H A D | m_libcfile.c | 351 { struct vki_stat64 buf64; local 352 res = VG_(do_syscall2)(__NR_stat64, (UWord)file_name, (UWord)&buf64); 356 TRANSLATE_TO_vg_stat(vgbuf, &buf64); 376 struct vki_stat64 buf64; local 378 (UWord)&buf64, 0); 380 struct vki_stat buf64; local 382 (UWord)&buf64, 0); 387 TRANSLATE_TO_vg_stat(vgbuf, &buf64); 404 { struct vki_stat64 buf64; local 405 res = VG_(do_syscall2)(__NR_fstat64, (UWord)fd, (UWord)&buf64); 423 struct vki_stat64 buf64; local 426 struct vki_stat buf64; local [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_linux.cc | 230 struct stat64 buf64; 231 int res = internal_syscall(SYSCALL(stat64), path, &buf64); 232 stat64_to_stat(&buf64, (struct stat *)buf); 246 struct stat64 buf64; 247 int res = internal_syscall(SYSCALL(lstat64), path, &buf64); 248 stat64_to_stat(&buf64, (struct stat *)buf); 257 struct stat64 buf64; 258 int res = internal_syscall(SYSCALL(fstat64), fd, &buf64); 259 stat64_to_stat(&buf64, (struct stat *)buf);
|
/external/valgrind/coregrind/m_scheduler/ |
H A D | scheduler.c | 2025 HChar* buf64 = (HChar*)arg[2]; // points to a HChar [64] array local 2028 VG_(memset)(buf64, 0, 64); 2036 VG_(strncpy)(buf64, buf, 50); 2037 buf64[49] = '\0'; 2040 if (buf64[i] == 0) 2043 VG_(sprintf)(buf64+i, ":%u", linenum); // safe 2045 buf64[0] = 0;
|
/external/v8/src/third_party/valgrind/ |
H A D | valgrind.h | 4013 /* Map a code address to a source file name and line number. buf64 4017 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \ 4020 addr, buf64, 0, 0, 0)
|
/external/valgrind/include/ |
H A D | valgrind.h | 7072 /* Map a code address to a source file name and line number. buf64 7076 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \ 7079 addr, buf64, 0, 0, 0)
|
/external/valgrind/coregrind/m_syswrap/ |
H A D | syswrap-solaris.c | 2655 struct vki_shmid_ds64 *buf64 = (struct vki_shmid_ds64 *) ARG4; local 2658 buf64->shmx_perm.ipcx_uid); 2661 buf64->shmx_perm.ipcx_gid); 2664 buf64->shmx_perm.ipcx_mode);
|
Completed in 158 milliseconds