Searched refs:argp (Results 1 - 25 of 124) sorted by relevance

12345

/external/qemu/distrib/libsparse/src/
H A Dsparse_err.c25 va_list argp; local
27 va_start(argp, fmt);
28 vfprintf(stderr, fmt, argp);
29 va_end(argp);
H A Dsparse_read.c58 va_list argp; local
61 va_start(argp, fmt);
62 size = vsnprintf(NULL, 0, fmt, argp);
63 va_end(argp);
74 va_start(argp, fmt);
75 vsnprintf(at, size, fmt, argp);
76 va_end(argp);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DSelectorExtras.h21 va_list argp) {
25 while (const char *s = va_arg(argp, const char *))
31 static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) { argument
32 const char *First = va_arg(argp, const char *);
34 return getKeywordSelectorImpl(Ctx, First, argp);
40 va_list argp; local
41 va_start(argp, First);
42 Selector result = getKeywordSelectorImpl(Ctx, First, argp);
43 va_end(argp);
52 va_list argp;
19 getKeywordSelectorImpl(ASTContext &Ctx, const char *First, va_list argp) argument
[all...]
/external/clang/test/Sema/
H A Dvariadic-block.c9 va_list argp;
15 va_start(argp, format);
18 i = va_arg(argp, int);
22 d = va_arg(argp, double);
26 c = va_arg(argp, int);
/external/compiler-rt/test/BlocksRuntime/
H A Dvariadic.c24 va_list argp;
30 va_start(argp, format);
34 i = va_arg(argp, int);
39 d = va_arg(argp, double);
44 c = va_arg(argp, int);
/external/elfutils/0.153/src/
H A Darlib-argp.c29 #include <argp.h>
92 static const struct argp argp = variable in typeref:struct:argp
99 { &argp, 0, "", 2 },
H A Darlib.h29 #include <argp.h>
H A Dranlib.c32 #include <argp.h>
67 /* Definitions of arguments for argp functions. */
79 /* Data structure to communicate with argp functions. */
80 static const struct argp argp = variable in typeref:struct:argp
108 (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL);
117 argp_help (&argp, stderr, ARGP_HELP_SEE, "ranlib");
/external/e2fsprogs/lib/ss/
H A Dexecute_cmd.c167 char **argp; local
170 for (argp = argv; *argp; argp++)
172 argp = (char **)malloc((argc+1)*sizeof(char *));
174 argp[i] = argv[i];
175 i = really_execute_command(sci_idx, argc, &argp);
176 free(argp);
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dex_data.h139 * arguments |argl| and |argp| contain opaque values that were given to
145 int index, long argl, void *argp);
155 int index, long argl, void *argp);
167 void **from_d, int index, long argl, void *argp);
178 * called. Any of the callback arguments may be NULL. The |argl| and |argp|
191 void *argp, CRYPTO_EX_new *new_func,
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dsrpc_params.cc91 for (NaClSrpcArg** argp = vec; *argp; ++argp) {
92 FreeSrpcArg(*argp);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlobject.c179 const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { argument
188 const char *s = va_arg(argp, char *);
195 buff = cast(char, va_arg(argp, int));
200 setnvalue(L->top++, cast_num(va_arg(argp, int)));
204 setnvalue(L->top++, cast_num(va_arg(argp, l_uacNumber)));
209 int l = sprintf(buff, "%p", va_arg(argp, void *));
235 va_list argp; local
236 va_start(argp, fmt);
237 msg = luaO_pushvfstring(L, fmt, argp);
238 va_end(argp);
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/
H A Dinternal.h125 int (*get_new_index)(int class_value, long argl, void *argp,
H A Dex_data_impl.c124 void *argp; /* Arbitary void pointer */ member in struct:crypto_ex_data_func_st
244 static int get_new_index(int class_value, long argl, void *argp, argument
262 funcs->argp = argp;
333 func_pointer->argp);
363 func_pointer->argp);
387 func_pointer->argp);
H A Dex_data.c146 int CRYPTO_get_ex_new_index(int class_value, long argl, void *argp, argument
150 return impl->get_new_index(class_value, argl, argp, new_func, dup_func,
/external/valgrind/main/drd/tests/
H A Dthread_name.c19 static void* thread_func(void* argp) argument
21 const int thread_num = (ptrdiff_t)(argp);
/external/openssl/crypto/
H A Dex_data.c156 int (*cb_get_new_index)(int class_index, long argl, void *argp,
180 static int int_get_new_index(int class_index, long argl, void *argp,
333 static int def_add_index(EX_CLASS_ITEM *item, long argl, void *argp, argument
346 a->argp=argp;
388 static int int_get_new_index(int class_index, long argl, void *argp, argument
395 return def_add_index(item, argl, argp, new_func, dup_func, free_func);
436 storage[i]->argl,storage[i]->argp);
482 storage[i]->argl,storage[i]->argp);
523 storage[i]->argl,storage[i]->argp);
558 CRYPTO_get_ex_new_index(int class_index, long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) argument
[all...]
H A Dossl_typ.h196 int idx, long argl, void *argp);
198 int idx, long argl, void *argp);
200 int idx, long argl, void *argp);
/external/qemu/util/
H A Dqemu-error.c172 const char *const *argp; local
180 argp = cur_loc->ptr;
182 error_printf("%s%s", sep, argp[i]);
/external/openssl/crypto/ecdh/
H A Decdh.h97 int ECDH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new
/external/openssl/include/openssl/
H A Decdh.h97 int ECDH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new
H A Dossl_typ.h196 int idx, long argl, void *argp);
198 int idx, long argl, void *argp);
200 int idx, long argl, void *argp);
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_utils.h217 * @param argp Var-args list.
219 void OI_VPrintf(const OI_CHAR *format, va_list argp);
248 * @param argp Var-args list.
254 const OI_CHAR *format, va_list argp);
/external/elfutils/0.153/lib/
H A Dsystem.h52 #include <argp.h>
96 argp_program_bug_address, in all programs. argp.h declares these
116 extern const struct argp color_argp;
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
H A Dfb_writer.c52 int main(unsigned long long spe_id __attribute__ ((unused)), unsigned long long argp __attribute__ ((unused)))
88 deprintf("[SPU] argp = %u\n", (unsigned int)argp);

Completed in 802 milliseconds

12345