HomeSort by relevance Sort by last modified time
    Searched defs:argp (Results 1 - 25 of 37) sorted by null

1 2

  /system/core/libsparse/
sparse_err.c 25 va_list argp; local
27 va_start(argp, fmt);
28 vfprintf(stderr, fmt, argp);
29 va_end(argp);
sparse_read.c 58 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);
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 47 char *argp[] = {"sh", "-c", NULL, NULL}; local
52 argp[2] = (char *)command;
63 execve(_PATH_BSHELL, argp, environ);
  /external/elfutils/src/src/
arlib-argp.c 22 #include <argp.h>
85 static const struct argp argp = variable in typeref:struct:argp
92 { &argp, 0, "", 2 },
ranlib.c 24 #include <argp.h>
59 /* Definitions of arguments for argp functions. */
71 /* Data structure to communicate with argp functions. */
72 static const struct argp argp = variable in typeref:struct:argp
100 (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL);
109 argp_help (&argp, stderr, ARGP_HELP_SEE, "ranlib");
findtextrel.c 23 #include <argp.h>
59 /* Definitions of arguments for argp functions. */
81 /* Data structure to communicate with argp functions. */
82 static struct argp argp = variable in typeref:struct:argp
123 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
size.c 23 #include <argp.h>
55 /* Definitions of arguments for argp functions. */
89 /* Data structure to communicate with argp functions. */
90 static struct argp argp = variable in typeref:struct:argp
181 argp_parse (&argp, argc, argv, 0, &remaining, NULL);
strings.c 23 #include <argp.h>
59 /* Definitions of arguments for argp functions. */
89 /* Data structure to communicate with argp functions. */
90 static struct argp argp = variable in typeref:struct:argp
158 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
269 argp_help (&argp, stderr, ARGP_HELP_SEE, "strings");
304 argp_help (&argp, stderr, ARGP_HELP_SEE, "strings");
addr2line.c 23 #include <argp.h>
55 /* Definitions of arguments for argp functions. */
92 /* Data structure to communicate with argp functions. */
93 static const struct argp argp = variable in typeref:struct:argp
150 argp_children[0].argp = dwfl_standard_argp ();
153 (void) argp_parse (&argp, argc, argv, 0, &remaining, &dwfl);
ar.c 23 #include <argp.h>
66 /* Definitions of arguments for argp functions. */
108 /* Data structure to communicate with argp functions. */
109 static struct argp argp = variable in typeref:struct:argp
174 (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL);
192 argp_help (&argp, stderr, ARGP_HELP_USAGE | ARGP_HELP_SEE,
212 argp_help (&argp, stderr, ARGP_HELP_SEE,
237 argp_help (&argp, stderr, ARGP_HELP_SEE, program_invocation_short_name);
250 argp_help (&argp, stderr, ARGP_HELP_STD_ERR
    [all...]
elfcmp.c 23 #include <argp.h>
59 /* Definitions of arguments for argp functions. */
86 /* Data structure to communicate with argp functions. */
87 static struct argp argp = variable in typeref:struct:argp
138 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
144 argp_help (&argp, stderr, ARGP_HELP_SEE, program_invocation_short_name);
697 argp_help (&argp, stderr, ARGP_HELP_SEE,
objdump.c 23 #include <argp.h>
50 /* Definitions of arguments for argp functions. */
84 /* Data structure to communicate with argp functions. */
85 static const struct argp argp = variable in typeref:struct:argp
153 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
237 argp_help (&argp, stderr, ARGP_HELP_SEE,
stack.c 20 #include <argp.h>
41 /* non-printable argp options. */
680 const struct argp argp = local
693 argp_parse (&argp, argc, argv, 0, NULL, NULL);
  /external/clang/lib/StaticAnalyzer/Checkers/
SelectorExtras.h 21 va_list argp) {
25 while (const char *s = va_arg(argp, const char *))
31 static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) {
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;
    [all...]
  /external/boringssl/src/crypto/
ex_data.c 126 void *argp; /* Arbitary void pointer */ member in struct:crypto_ex_data_func_st
133 long argl, void *argp, CRYPTO_EX_new *new_func,
146 funcs->argp = argp;
248 func_pointer->argp);
278 func_pointer->argp);
303 func_pointer->argp);
  /external/e2fsprogs/lib/ss/
execute_cmd.c 167 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);
  /frameworks/base/libs/common_time/
utils.cpp 68 va_list argp; local
69 va_start(argp, fmt);
70 internalLog(prio, tag, fmt, argp);
71 va_end(argp);
75 va_list argp; local
76 va_start(argp, fmt);
77 internalLog(0, NULL, fmt, argp);
78 va_end(argp);
84 va_list argp) {
87 String8 s(String8::formatV(fmt, argp));
    [all...]
  /frameworks/native/opengl/libs/EGL/
trace.cpp 89 va_list argp; local
90 va_start(argp, fmt);
91 line_index += vsnprintf(line + line_index, lineSize-line_index, fmt, argp);
92 va_end(argp);
182 va_list argp;
183 va_start(argp, numArgs);
188 va_arg(argp, const char*);
189 GLuint shader = va_arg(argp, GLuint);
190 va_arg(argp, const char*);
191 GLsizei count = va_arg(argp, GLsizei)
    [all...]
  /system/core/libpixelflinger/codeflinger/
mips_disassem.c 556 va_list argp; local
557 va_start(argp, fmt);
559 cnt = vsnprintf(sprintf_buffer, sprintf_buf_len, fmt, argp);
563 vprintf(fmt, argp);
  /external/elfutils/src/tests/
dwflmodtest.c 28 #include <argp.h>
254 { .argp = dwfl_standard_argp () },
255 { .argp = NULL }
257 const struct argp argp = local
261 (void) argp_parse (&argp, argc, argv, 0, NULL, &dwfl);
backtrace.c 38 #include <argp.h>
461 { .argp = dwfl_standard_argp () },
462 { .argp = NULL }
464 const struct argp argp = local
468 (void) argp_parse (&argp, argc, argv, 0, NULL, &dwfl);
  /system/netd/server/
NetdConstants.cpp 43 const char** argp = argv; local
45 while (*argp) {
46 args += *argp;
48 argp++;
  /external/selinux/libsepol/cil/test/unit/
CuTest.c 111 va_list argp; local
113 va_start(argp, format);
114 vsprintf(buf, format, argp);
115 va_end(argp);
  /system/extras/tests/iptables/qtaguid/
socketTag.cpp 66 va_list argp; local
68 va_start(argp, fmt);
70 vasprintf(&buff, fmt, argp);
76 va_end(argp);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
argp.h 80 these is passed in the OPTIONS field of an argp structure. Each option
142 completely documented in an argp's ARGS_DOC field, in which case including
150 struct argp; /* fwd declare this type */
154 /* The type of a pointer to an argp parsing function. */
180 If an error occurs (either detected by argp, or because the parsing
218 /* An argp structure contains a set of options declarations, a function to
220 argp's, and perhaps a function to filter help output. When actually
221 parsing options, getopt is called with the union of all the argp
224 struct argp
252 argp field, pointing to child argps should be parsed with this one. An
222 struct argp struct
291 __const struct argp *argp; member in struct:argp_child
    [all...]

Completed in 866 milliseconds

1 2