/system/netd/ |
SoftapController.h | 35 int addParam(int pos, const char *cmd, const char *arg);
|
/frameworks/base/tools/aidl/ |
aidl.cpp | 450 arg_type* arg = m->args; local 451 while (arg) { 452 Type* t = NAMES.Search(arg->type.type.data); 454 // check the arg type 457 filename, m->type.type.lineno, arg->name.data, index, 458 arg->type.type.data); 465 filename, m->type.type.lineno, arg->name.data, index, 466 arg->type.type.data); 474 arg->type.type.data, arg->name.data) [all...] |
/external/qemu/tcg/hppa/ |
tcg-target.c | 341 static void tcg_out_mov(TCGContext *s, TCGType type, int ret, int arg) 345 if (ret != arg) { 346 tcg_out32(s, INSN_OR | INSN_T(ret) | INSN_R1(arg) 352 int ret, tcg_target_long arg) 354 if (check_fit_tl(arg, 14)) { 356 | INSN_R2(TCG_REG_R0) | INSN_IM14(arg)); 359 hi = arg >> 11; 360 lo = arg & 0x7ff; 444 static inline void tcg_out_mtctl_sar(TCGContext *s, int arg) 446 tcg_out32(s, INSN_MTCTL | INSN_R2(11) | INSN_R1(arg)); [all...] |
/external/libxml2/ |
debugXML.c | 2807 char arg[400]; local [all...] |
/external/chromium/third_party/libevent/test/ |
regress_http.c | 69 void http_basic_cb(struct evhttp_request *req, void *arg); 70 static void http_chunked_cb(struct evhttp_request *req, void *arg); 71 void http_post_cb(struct evhttp_request *req, void *arg); 72 void http_dispatcher_cb(struct evhttp_request *req, void *arg); 73 static void http_large_delay_cb(struct evhttp_request *req, void *arg); 161 http_readcb(struct bufferevent *bev, void *arg) 197 http_writecb(struct bufferevent *bev, void *arg) 207 http_errorcb(struct bufferevent *bev, short what, void *arg) 214 http_basic_cb(struct evhttp_request *req, void *arg) 257 http_chunked_trickle_cb(int fd, short events, void *arg) [all...] |
test-eof.c | 37 read_cb(int fd, short event, void *arg) 49 event_add(arg, NULL);
|
test-weof.c | 39 write_cb(int fd, short event, void *arg) 51 event_add(arg, NULL);
|
/external/strace/ |
stream.c | 98 printstrbufarg(tcp, arg, getting) 100 int arg; 105 if (arg == 0) 107 else if (umove(tcp, arg, &buf) < 0) 1038 static int internal_stream_ioctl(struct tcb *tcp, int arg) 1048 if (!arg) 1050 if (umove(tcp, arg, &si) < 0) { 1183 stream_ioctl(tcp, code, arg) 1185 int code, arg; 1203 return internal_stream_ioctl(tcp, arg); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
MessageParser.java | 34 String arg = args; local 42 final int comment = arg.indexOf('='); 44 arg = arg.substring(comment + 1); 45 arg = arg.trim(); 46 assert arg.charAt(0) == '{'; 47 arg = arg.substring(1, arg.lastIndexOf('}')).trim() 54 String [] arg = getList(); local 64 String [] arg = getList(); local 74 String [] arg = getList(); local 87 String arg = args.substring(args.indexOf('"') + 1, args.lastIndexOf('"')); local 100 String arg = null; local 119 String arg = getArgument(); local 130 String arg = getArgument(); local [all...] |
/external/zlib/contrib/untgz/ |
untgz.c | 371 int matchname (int arg,int argc,char **argv,char *fname) 373 if (arg == argc) /* no arguments given (untgz tgzarchive) */ 376 while (arg < argc) 377 if (ExprMatch(fname,argv[arg++])) 386 int tar (gzFile in,int action,int arg,int argc,char **argv) 480 if (matchname(arg,argc,argv,fname)) 609 int arg = 1; local 634 if (strcmp(argv[arg],"-l") == 0) 637 if (argc == ++arg) 640 else if (strcmp(argv[arg],"-h") == 0 [all...] |
/frameworks/wilhelm/tests/examples/ |
slesTestFeedback.cpp | 179 char *arg = argv[i]; local 180 if (arg[0] != '-') { 184 if (!strncmp(arg, "-r", 2)) { 185 rxBufCount = atoi(&arg[2]); 191 } else if (!strncmp(arg, "-t", 2)) { 192 txBufCount = atoi(&arg[2]); 198 } else if (!strncmp(arg, "-f", 2)) { 199 bufSizeInFrames = atoi(&arg[2]); 205 } else if (!strncmp(arg, "-c", 2)) { 206 channels = atoi(&arg[2]) [all...] |
/external/elfutils/src/ |
addr2line.c | 73 { "target", 'b', "ARG", OPTION_HIDDEN, NULL, 0 }, 74 { "demangle", 'C', "ARG", OPTION_HIDDEN | OPTION_ARG_OPTIONAL, NULL, 0 }, 75 { "demangler", OPT_DEMANGLER, "ARG", OPTION_HIDDEN, NULL, 0 }, 87 static error_t parse_opt (int key, char *arg, struct argp_state *state); 189 parse_opt (int key, char *arg __attribute__ ((unused)), 324 void *arg) 326 Dwfl_Module **result = arg; 338 void *arg) 340 const char *looking_for = ((void **) arg)[0]; 341 GElf_Sym *symbol = ((void **) arg)[1] 423 void *arg[2] = { name, &sym }; local [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
CommandLine.java | 259 String arg = argv[optind]; local 261 if (arg.charAt(0) != '-') break; 262 int eqsign = arg.indexOf('='); 264 value = arg.substring(eqsign + 1, arg.length()); 265 arg = arg.substring(0, eqsign + 1); 267 if (options.containsKey(arg)) { 268 if (value == null) options.put(arg, Boolean.TRUE); 269 else options.put(arg, value) [all...] |
/dalvik/vm/alloc/ |
HeapSource.h | 162 void *arg), 163 void *arg);
|
/dalvik/vm/mterp/armv5te/ |
stub.S | 3 mov r0, rSELF @ self is first arg to function
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyActivityEvent.java | 38 public MonkeyActivityEvent(ComponentName app, long arg) { 41 mAlarmTime = arg;
|
/development/ide/emacs/ |
android-host.el | 100 (defun android-fastboot-flashall (arg) 103 With no ARG, don't wipe the user data. 104 With ARG, wipe the user data." 110 (if arg
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
ErrorManager.cs | 84 public static void Error(/*int msgID,*/ object arg) 87 //getErrorListener().error(new ToolMessage(msgID, arg)); 90 //sb.AppendFormat("internal error: {0} {1}", arg); 91 sb.AppendFormat("internal error: {0} ", arg); 95 INTERNAL_ERROR(arg,arg2,exception,stackTrace) ::= << 96 internal error: <arg> <arg2><if(exception)>: <exception><endif>
|
/external/apache-harmony/ |
run-harmony-tests | 29 --vm-arg -Xmx32M \
|
/external/bison/lib/ |
argmatch.h | 39 matches with ARG. If VALLIST is not NULL, then use it to resolve 40 false ambiguities (i.e., different matches of ARG but corresponding 43 ptrdiff_t argmatch (char const *arg, char const *const *arglist, 46 # define ARGMATCH(Arg, Arglist, Vallist) \ 47 argmatch (Arg, Arglist, (char const *) (Vallist), sizeof *(Vallist)) 81 char const *arg, char const *const *arglist, 87 # define XARGMATCH(Context, Arg, Arglist, Vallist) \ 88 ((Vallist) [__xargmatch_internal (Context, Arg, Arglist, \
|
/external/bluetooth/bluez/src/ |
sdpd.h | 32 #define SDPDBG(fmt, arg...) syslog(LOG_DEBUG, "%s: " fmt "\n", __func__ , ## arg)
|
/external/chromium/chrome/browser/ |
platform_util_linux.cc | 17 void XDGUtil(const std::string& util, const std::string& arg) { 20 argv.push_back(arg);
|
/external/chromium/third_party/libevent/sample/ |
time-test.c | 33 timeout_cb(int fd, short event, void *arg) 36 struct event *timeout = arg;
|
/external/clang/utils/analyzer/ |
ubiviz | 63 for arg in args: 65 for x in StreamData(arg):
|
/external/dbus/tools/ |
dbus-cleanup-sockets.c | 388 const char *arg = argv[i]; local 390 if (strcmp (arg, "--help") == 0 || 391 strcmp (arg, "-h") == 0 || 392 strcmp (arg, "-?") == 0) 394 else if (strcmp (arg, "--version") == 0) 398 if (strcmp (arg, "--") == 0) 400 else if (*arg == '-') 411 dirname = arg;
|