Home
last modified time | relevance | path

Searched refs:buf64 (Results 1 – 10 of 10) sorted by relevance

/external/valgrind/coregrind/m_aspacemgr/
Daspacemgr-common.c331 struct vki_stat64 buf64; in ML_() local
332 res = VG_(do_syscall2)(__NR_fstat64, fd, (UWord)&buf64); in ML_()
334 *dev = (ULong)buf64.st_dev; in ML_()
335 *ino = (ULong)buf64.st_ino; in ML_()
336 *mode = (UInt) buf64.st_mode; in ML_()
350 struct vki_stat64 buf64; in ML_()
351 SysRes res = VG_(do_syscall4)(__NR_fstatat64, fd, 0, (UWord)&buf64, 0); in ML_()
353 struct vki_stat buf64; in ML_()
354 SysRes res = VG_(do_syscall4)(__NR_fstatat, fd, 0, (UWord)&buf64, 0); in ML_()
359 *dev = (ULong)buf64.st_dev; in ML_()
[all …]
/external/curl/tests/server/
Dgetpart.c194 unsigned char *buf64 = NULL; in decodedata() local
201 error = (int) Curl_base64_decode(*buf, &buf64, &src_len); in decodedata()
212 free(buf64); in decodedata()
218 memcpy(*buf, buf64, src_len); in decodedata()
222 free(buf64); in decodedata()
/external/valgrind/coregrind/
Dm_libcfile.c351 { struct vki_stat64 buf64; in VG_() local
352 res = VG_(do_syscall2)(__NR_stat64, (UWord)file_name, (UWord)&buf64); in VG_()
356 TRANSLATE_TO_vg_stat(vgbuf, &buf64); in VG_()
376 struct vki_stat64 buf64; in VG_() local
378 (UWord)&buf64, 0); in VG_()
380 struct vki_stat buf64; in VG_()
382 (UWord)&buf64, 0); in VG_()
387 TRANSLATE_TO_vg_stat(vgbuf, &buf64); in VG_()
404 { struct vki_stat64 buf64; in VG_() local
405 res = VG_(do_syscall2)(__NR_fstat64, (UWord)fd, (UWord)&buf64); in VG_()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_linux.cc241 struct stat64 buf64; in internal_stat()
242 int res = internal_syscall(SYSCALL(stat64), path, &buf64); in internal_stat()
243 stat64_to_stat(&buf64, (struct stat *)buf); in internal_stat()
265 struct stat64 buf64; in internal_lstat()
266 int res = internal_syscall(SYSCALL(lstat64), path, &buf64); in internal_lstat()
267 stat64_to_stat(&buf64, (struct stat *)buf); in internal_lstat()
284 struct stat64 buf64; in internal_fstat()
285 int res = internal_syscall(SYSCALL(fstat64), fd, &buf64); in internal_fstat()
286 stat64_to_stat(&buf64, (struct stat *)buf); in internal_fstat()
/external/valgrind/coregrind/m_scheduler/
Dscheduler.c2025 HChar* buf64 = (HChar*)arg[2]; // points to a HChar [64] array in do_client_request() local
2028 VG_(memset)(buf64, 0, 64); in do_client_request()
2036 VG_(strncpy)(buf64, buf, 50); in do_client_request()
2037 buf64[49] = '\0'; in do_client_request()
2040 if (buf64[i] == 0) in do_client_request()
2043 VG_(sprintf)(buf64+i, ":%u", linenum); // safe in do_client_request()
2045 buf64[0] = 0; in do_client_request()
/external/v8/src/third_party/valgrind/
Dvalgrind.h4017 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \ argument
4020 addr, buf64, 0, 0, 0)
/external/syslinux/memdisk/
Dsetup.c54 uint64_t buf64; /* 64-bit buf pointer */ member
/external/libchrome/base/third_party/valgrind/
Dvalgrind.h4779 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \ argument
4783 addr, buf64, 0, 0, 0); \
/external/valgrind/include/
Dvalgrind.h7076 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \ argument
7079 addr, buf64, 0, 0, 0)
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-solaris.c2655 struct vki_shmid_ds64 *buf64 = (struct vki_shmid_ds64 *) ARG4; in PRE() local
2658 buf64->shmx_perm.ipcx_uid); in PRE()
2661 buf64->shmx_perm.ipcx_gid); in PRE()
2664 buf64->shmx_perm.ipcx_mode); in PRE()