Searched refs:args (Results 26 - 50 of 51) sorted by relevance

123

/system/core/libmincrypt/tools/
H A DDumpPublicKey.java129 public static void main(String[] args) { argument
130 if (args.length < 1) {
135 for (int i = 0; i < args.length; i++) {
136 FileInputStream input = new FileInputStream(args[i]);
142 System.out.println(i < args.length - 1 ? "," : "");
/system/bluetooth/tools/
H A Dpipetest.c105 static void thread_poll(void *args) { argument
106 int fd = (int)args;
115 static void thread_pollin(void *args) { argument
116 int fd = (int)args;
125 static void thread_pollin_rand_delay(void *args) { argument
126 int fd = (int)args;
137 static void thread_read(void *args) { argument
138 int fd = (int)args;
144 static void thread_close(void *args) { argument
145 int fd = (int)args;
[all...]
H A Dsock_shutdown_test.c218 static void thread_accept(struct thread_args *args) { argument
220 sleep(args->delay);
221 _accept(args->fd, args->type);
228 struct thread_args args = {-1, type, 0}; local
237 args.fd = fd;
238 pthread_create(&thread, NULL, (void *)thread_accept, (void *)&args);
/system/core/libsparse/
H A Dsimg_dump.py36 opts, args = getopt.getopt(sys.argv[1:],
49 if len(args) == 0:
53 for path in args:
/system/core/sh/
H A Dnodes.h44 union node *args; member in struct:ncmd
73 union node *args; member in struct:nfor
H A Dnodes.c134 calcsize(n->ncmd.args);
153 calcsize(n->nfor.args);
230 new->ncmd.args = copynode(n->ncmd.args);
251 new->nfor.args = copynode(n->nfor.args);
H A Dparser.c376 n1->nfor.args = ap;
387 n1->nfor.args = n2;
531 union node *args, **app; local
541 args = NULL;
542 app = &args;
568 } else if (lasttoken == TLP && app == &args->narg.next
590 n->ncmd.args = args;
H A Deval.c359 for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
715 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
733 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
1106 if (n->type == NCMD && n->ncmd.args)
1107 if (goodname(n->ncmd.args->narg.text))
1108 find_command(n->ncmd.args->narg.text, &entry, 0,
H A Dshow.c132 for (np = cmd->ncmd.args ; np ; np = np->narg.next) {
H A Djobs.c1312 cmdlist(n->nfor.args, 1);
1334 cmdlist(n->ncmd.args, 1);
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_mutex.c49 va_list args; local
51 va_start(args, format);
52 vfprintf(stderr, format, args);
53 va_end(args);
63 va_list args; local
65 va_start(args, format);
66 vfprintf(stderr, format, args);
67 va_end(args);
/system/extras/bugmailer/src/com/android/commands/sendbug/
H A DSendBug.java45 public static void main(String[] args) { argument
46 if (args.length == 1) {
47 new SendBug().run(args[0]);
48 } else if (args.length == 2) {
49 new SendBug().run(args[0], args[1]);
/system/bluetooth/brfpatch/
H A Dbrfpatch.c24 #define FAILIF(x, args...) do { \
26 fprintf(stderr, ##args); \
/system/core/adb/
H A Dsysdeps.h156 va_list args; local
157 va_start( args, options );
158 mode = va_arg( args, int );
159 va_end( args );
318 va_list args; local
319 va_start( args, options );
320 mode = va_arg( args, int );
321 va_end( args );
H A Dfile_sync_client.c813 sync_ls_build_list_cb_args *args = (sync_ls_build_list_cb_args *)cookie; local
817 copyinfo **dirlist = args->dirlist;
825 ci = mkcopyinfo(args->rpath, args->lpath, name, 1);
829 copyinfo **filelist = args->filelist;
831 ci = mkcopyinfo(args->rpath, args->lpath, name, 0);
846 sync_ls_build_list_cb_args args; local
848 args.filelist = filelist;
849 args
[all...]
H A Dframebuffer_service.c74 const char *args[2] = {command, NULL}; local
75 execvp(command, (char**)args);
H A Dadb.h328 int backup_service(BackupOperation operation, char* args);
H A Dadb.c186 va_list args; local
187 va_start(args, fmt);
191 vsnprintf(msg, sizeof(msg), fmt, args);
/system/core/init/
H A Dparser.c27 RAW(" '%s'", svc->args[n]);
42 RAW(" %s", cmd->args[n]);
H A Dsignal_handler.c113 cmd->func(cmd->nargs, cmd->args);
/system/extras/tests/lib/testUtil/
H A DtestUtil.c148 va_list args; local
150 va_start(args, fmt);
151 vsnprintf(line, sizeof(line), fmt, args);
157 vfprintf(stream, fmt, args);
/system/extras/tests/sdcard/
H A Dplot_sdcard.py309 (optlist, args) = getopt.getopt(argv[1:],
317 (metadata, data) = Parse(args[0])
321 (metadata, data) = Parse(args[0])
/system/core/include/cutils/
H A Dlog.h361 * Log macro that allows you to pass in a varargs ("args" is a va_list).
364 #define LOG_PRI_VA(priority, tag, fmt, args) \
365 android_vprintLog(priority, NULL, tag, fmt, args)
436 /* If passed multiple args, returns ',' followed by all but 1st arg, otherwise
/system/core/fastboot/
H A Dengine.c118 va_list args; local
121 va_start(args, fmt);
122 vsnprintf(cmd + getvar_len, sizeof(cmd) - getvar_len, fmt, args);
123 va_end(args);
/system/core/toolbox/
H A Ddd.c1034 } args[] = { variable in typeref:struct:arg
1052 * args -- parse JCL syntax of dd.
1075 if (!(ap = (struct arg *)bsearch(&tmp, args,
1076 sizeof(args)/sizeof(struct arg), sizeof(struct arg),

Completed in 657 milliseconds

123