OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ext_arg
(Results
1 - 8
of
8
) sorted by null
/external/strace/linux/mips/
get_syscall_args.c
9
tcp->u_arg[0] = tcp->
ext_arg
[0] = mips_REG_A0;
10
tcp->u_arg[1] = tcp->
ext_arg
[1] = mips_REG_A1;
11
tcp->u_arg[2] = tcp->
ext_arg
[2] = mips_REG_A2;
12
tcp->u_arg[3] = tcp->
ext_arg
[3] = mips_REG_A3;
13
tcp->u_arg[4] = tcp->
ext_arg
[4] = mips_REG_A4;
14
tcp->u_arg[5] = tcp->
ext_arg
[5] = mips_REG_A5;
/external/strace/linux/x86_64/
get_syscall_args.c
10
tcp->
ext_arg
[0] = x86_64_regs.rdi;
11
tcp->
ext_arg
[1] = x86_64_regs.rsi;
12
tcp->
ext_arg
[2] = x86_64_regs.rdx;
13
tcp->
ext_arg
[3] = x86_64_regs.r10;
14
tcp->
ext_arg
[4] = x86_64_regs.r8;
15
tcp->
ext_arg
[5] = x86_64_regs.r9;
/external/strace/
lseek.c
9
* which means that on x32 we need to use tcp->
ext_arg
[N] to get offset argument.
20
offset = tcp->
ext_arg
[1];
60
* for hi and lo. We would need to use tcp->
ext_arg
[N] on x32...
io.c
227
tprintf("%llu", (unsigned long long) tcp->
ext_arg
[arg]);
mem.c
150
offset = tcp->
ext_arg
[5];
util.c
246
*val = tcp->
ext_arg
[arg_no];
250
*val = tcp->
ext_arg
[arg_no];
defs.h
270
long long
ext_arg
[MAX_ARGS];
member in struct:tcb
ChangeLog-CVS
783
(struct tcb): Add
ext_arg
for MIPS N32.
786
* file.c (sys_lseek): Use
ext_arg
for MIPS N32.
791
(sys_mmap): Use
ext_arg
for MIPS N32.
[
all
...]
Completed in 122 milliseconds