/external/ltp/include/old/ |
D | test.h | 139 const char *arg_fmt, ...) 141 #define tst_resm(ttype, arg_fmt, ...) \ argument 143 (arg_fmt), ##__VA_ARGS__) 146 const void *buf, size_t size, const char *arg_fmt, ...) 148 #define tst_resm_hexd(ttype, buf, size, arg_fmt, ...) \ argument 150 (arg_fmt), ##__VA_ARGS__) 153 void (*func)(void), const char *arg_fmt, ...) 155 #define tst_brkm(ttype, func, arg_fmt, ...) \ argument 157 (arg_fmt), ##__VA_ARGS__)
|
/external/ltp/lib/ |
D | tst_res.c | 73 #define EXPAND_VAR_ARGS(buf, arg_fmt, buf_len) do {\ argument 75 assert(arg_fmt != NULL); \ 76 va_start(ap, arg_fmt); \ 77 vsnprintf(buf, buf_len, arg_fmt, ap); \ 146 const char *arg_fmt, ...) in tst_res__() argument 156 EXPAND_VAR_ARGS(tmesg + len, arg_fmt, USERMESG - len); in tst_res__() 442 void (*func)(void), const char *arg_fmt, ...) in tst_brk__() argument 449 EXPAND_VAR_ARGS(tmesg, arg_fmt, USERMESG); in tst_brk__() 491 const char *arg_fmt, ...) in tst_resm_() argument 495 EXPAND_VAR_ARGS(tmesg, arg_fmt, USERMESG); in tst_resm_() [all …]
|
/external/ltp/include/ |
D | tst_test.h | 43 #define tst_res(ttype, arg_fmt, ...) \ argument 44 tst_res_(__FILE__, __LINE__, (ttype), (arg_fmt), ##__VA_ARGS__) 54 #define tst_brk(ttype, arg_fmt, ...) \ argument 55 tst_brk_(__FILE__, __LINE__, (ttype), (arg_fmt), ##__VA_ARGS__)
|
/external/strace/tests-mx32/ |
D | keyctl.c | 151 const char *arg_fmt[4] = { "%llu", "%llu", "%llu", "%llu" }; in do_keyctl() local 178 arg_fmt[cnt] = va_arg(ap, char *); in do_keyctl() 186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc); in do_keyctl()
|
/external/strace/tests/ |
D | keyctl.c | 151 const char *arg_fmt[4] = { "%llu", "%llu", "%llu", "%llu" }; in do_keyctl() local 178 arg_fmt[cnt] = va_arg(ap, char *); in do_keyctl() 186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc); in do_keyctl()
|
/external/strace/tests-m32/ |
D | keyctl.c | 151 const char *arg_fmt[4] = { "%llu", "%llu", "%llu", "%llu" }; in do_keyctl() local 178 arg_fmt[cnt] = va_arg(ap, char *); in do_keyctl() 186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc); in do_keyctl()
|
/external/ltp/doc/ |
D | test-writing-guidelines.txt | 395 void tst_res(int ttype, char *arg_fmt, ...); 411 void tst_brk(int ttype, char *arg_fmt, ...);
|