Home
last modified time | relevance | path

Searched refs:target_offset64 (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-devtools/qemu/qemu/
H A D0002-linux-user-Replace-use-of-lfs64-related-functions-an.patch248 - return get_errno(truncate64(arg1, target_offset64(arg2, arg3)));
249 + return get_errno(truncate(arg1, target_offset64(arg2, arg3)));
257 - return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3)));
258 + return get_errno(ftruncate(arg1, target_offset64(arg2, arg3)));
302 - ret = get_errno(pread64(arg1, p, arg3, target_offset64(arg4, arg5)));
303 + ret = get_errno(pread(arg1, p, arg3, target_offset64(arg4, arg5)));
311 - ret = get_errno(pwrite64(arg1, p, arg3, target_offset64(arg4, arg5)));
312 + ret = get_errno(pwrite(arg1, p, arg3, target_offset64(arg4, arg5)));
/openbmc/qemu/linux-user/
H A Duser-internals.h118 static inline uint64_t target_offset64(uint32_t word0, uint32_t word1) in target_offset64() function
127 static inline uint64_t target_offset64(uint64_t word0, uint64_t word1) in target_offset64() function
H A Dsyscall.c7270 return get_errno(truncate64(arg1, target_offset64(arg2, arg3))); in target_truncate64()
7284 return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3))); in target_ftruncate64()
12330 ret = posix_fadvise(arg1, target_offset64(arg3, arg4), in _syscall2()
12331 target_offset64(arg5, arg6), arg2); in _syscall2()
12358 ret = posix_fadvise(arg1, target_offset64(arg2, arg3), in _syscall2()
12359 target_offset64(arg4, arg5), arg6); in _syscall2()
13155 ret = get_errno(fallocate(arg1, arg2, target_offset64(arg3, arg4), in _syscall2()
13156 target_offset64(arg5, arg6))); in _syscall2()
13167 ret = get_errno(sync_file_range(arg1, target_offset64(arg3, arg4), in _syscall2()
13170 ret = get_errno(sync_file_range(arg1, target_offset64(arg2, arg3), in _syscall2()
[all …]
H A Dstrace.c2116 print_raw_param("%" PRIu64, target_offset64(arg2, arg3), 0); in print_fallocate()
2117 print_raw_param("%" PRIu64, target_offset64(arg4, arg5), 1); in print_fallocate()
2596 print_raw_param("%" PRIu64, target_offset64(arg1, arg2), 1); in print_truncate64()
2613 print_raw_param("%" PRIu64, target_offset64(arg1, arg2), 1); in print_ftruncate64()
4077 print_raw_param("%" PRIu64, target_offset64(arg3, arg4), 1); in print_pread64()