Searched defs:arg (Results 301 - 325 of 888) sorted by relevance

<<11121314151617181920>>

/external/aac/libSYS/src/
H A Dcmdl_parser.cpp113 static INT CheckArg(TEXTCHAR* arg, TEXTCHAR* str, UINT numArgs, TEXTCHAR type, TEXTCHAR* current_str);
176 TEXTCHAR arg[CMDL_MAX_STRLEN] = {L'\0'}; local
177 TEXTCHAR* p_arg = arg;
180 if (GetArgFromString(argc, argv, current_str, c_str_type[i], arg, switches_used )
203 if ( arg[0] == '\0' )
206 _tcsncpy( tmp, arg, CMDL_MAX_STRLEN );
216 if ( arg[0] == '\0' )
219 *tmp = _tcstol(arg, NULL, 0);
227 if ( arg[0] == '\0' )
230 *tmp = *arg;
444 CheckArg(TEXTCHAR* arg, TEXTCHAR* str, UINT numArgs, TEXTCHAR type, TEXTCHAR* cur_str) argument
[all...]
/external/bison/lib/
H A Dobstack.c204 void *arg)
231 h->extra_arg = arg;
200 _obstack_begin_1(struct obstack *h, int size, int alignment, void *(*chunkfun) (void *, long), void (*freefun) (void *, void *), void *arg) argument
/external/blktrace/btt/
H A Ddevs.c212 void dip_foreach_out(void (*func)(struct d_info *, void *), void *arg) argument
217 func(list_entry(p, struct d_info, all_head), arg); local
226 func(dip, arg);
/external/bluetooth/bluedroid/hci/src/
H A Dbt_hci_bdroid.c99 static void *bt_hc_worker_thread(void *arg);
339 static void *bt_hc_worker_thread(void *arg) argument
H A Duserial.c210 static void *userial_read_thread(void *arg) argument
H A Duserial_mct.c140 static void *userial_read_thread(void *arg) argument
/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.c108 const char *file, int line, const volatile void *arg){}
126 const char *file, int line, const volatile void *arg){}
107 AnnotateTraceMemory( const char *file, int line, const volatile void *arg) argument
125 AnnotateNoOp( const char *file, int line, const volatile void *arg) argument
/external/chromium/base/
H A Dtuple.h540 inline void DispatchToMethod(ObjT* obj, Method method, const Tuple0& arg) { argument
545 inline void DispatchToMethod(ObjT* obj, Method method, const A& arg) { argument
546 (obj->*method)(arg);
550 inline void DispatchToMethod(ObjT* obj, Method method, const Tuple1<A>& arg) { argument
551 (obj->*method)(arg.a);
557 const Tuple2<A, B>& arg) {
558 (obj->*method)(arg.a, arg.b);
563 const Tuple3<A, B, C>& arg) {
564 (obj->*method)(arg
555 DispatchToMethod(ObjT* obj, Method method, const Tuple2<A, B>& arg) argument
562 DispatchToMethod(ObjT* obj, Method method, const Tuple3<A, B, C>& arg) argument
568 DispatchToMethod(ObjT* obj, Method method, const Tuple4<A, B, C, D>& arg) argument
574 DispatchToMethod(ObjT* obj, Method method, const Tuple5<A, B, C, D, E>& arg) argument
581 DispatchToMethod(ObjT* obj, Method method, const Tuple6<A, B, C, D, E, F>& arg) argument
588 DispatchToMethod(ObjT* obj, Method method, const Tuple7<A, B, C, D, E, F, G>& arg) argument
595 DispatchToMethod(ObjT* obj, Method method, const Tuple8<A, B, C, D, E, F, G, H>& arg) argument
603 DispatchToFunction(Function function, const Tuple0& arg) argument
608 DispatchToFunction(Function function, const A& arg) argument
613 DispatchToFunction(Function function, const Tuple1<A>& arg) argument
618 DispatchToFunction(Function function, const Tuple2<A, B>& arg) argument
623 DispatchToFunction(Function function, const Tuple3<A, B, C>& arg) argument
628 DispatchToFunction(Function function, const Tuple4<A, B, C, D>& arg) argument
634 DispatchToFunction(Function function, const Tuple5<A, B, C, D, E>& arg) argument
640 DispatchToFunction(Function function, const Tuple6<A, B, C, D, E, F>& arg) argument
647 DispatchToFunction(Function function, const Tuple7<A, B, C, D, E, F, G>& arg) argument
654 DispatchToFunction(Function function, const Tuple8<A, B, C, D, E, F, G, H>& arg) argument
662 DispatchToMethod(ObjT* obj, Method method, const Tuple0& arg, Tuple0*) argument
669 DispatchToMethod(ObjT* obj, Method method, const A& arg, Tuple0*) argument
674 DispatchToMethod(ObjT* obj, Method method, const Tuple1<A>& arg, Tuple0*) argument
681 DispatchToMethod(ObjT* obj, Method method, const Tuple2<A, B>& arg, Tuple0*) argument
688 DispatchToMethod(ObjT* obj, Method method, const Tuple3<A, B, C>& arg, Tuple0*) argument
694 DispatchToMethod(ObjT* obj, Method method, const Tuple4<A, B, C, D>& arg, Tuple0*) argument
700 DispatchToMethod(ObjT* obj, Method method, const Tuple5<A, B, C, D, E>& arg, Tuple0*) argument
707 DispatchToMethod(ObjT* obj, Method method, const Tuple6<A, B, C, D, E, F>& arg, Tuple0*) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service_unittest.cc290 ListValue arg; local
291 arg.Append(new FundamentalValue(1));
292 EXPECT_TRUE(service_->Assess(extension_a_, f, &arg, kStartTime));
293 EXPECT_TRUE(service_->Assess(extension_a_, f, &arg,
295 EXPECT_FALSE(service_->Assess(extension_a_, f, &arg,
300 EXPECT_FALSE(service_->Assess(extension_a_, f, &arg,
302 EXPECT_FALSE(service_->Assess(extension_a_, g, &arg,
/external/chromium/chrome/browser/
H A Dshell_integration_linux.cc181 std::string QuoteArgForDesktopFileExec(const std::string& arg) { argument
185 if (arg.find_first_of(" \t\n\"'\\><~|&;$*?#()`") == std::string::npos)
186 return arg; // No quoting necessary.
189 for (size_t i = 0; i < arg.size(); ++i) {
192 switch (arg[i]) {
200 quoted += arg[i];
211 std::string EscapeStringForDesktopFile(const std::string& arg) { argument
213 if (arg.find('\\') == std::string::npos)
214 return arg;
217 for (size_t i = 0; i < arg
[all...]
/external/chromium/net/test/
H A Dopenssl_helper.cc17 static int sni_cb(SSL *s, int *ad, void *arg) { argument
20 *reinterpret_cast<bool*>(arg) = true;
32 unsigned int *outlen, void *arg) {
33 bool* npn_mispredict = reinterpret_cast<bool*>(arg);
31 next_proto_cb(SSL *ssl, const unsigned char **out, unsigned int *outlen, void *arg) argument
/external/chromium/third_party/libevent/
H A Devbuffer.c78 void *arg) {
79 struct bufferevent *bufev = arg;
93 bufferevent_readcb(int fd, short event, void *arg) argument
95 struct bufferevent *bufev = arg;
164 bufferevent_writecb(int fd, short event, void *arg) argument
166 struct bufferevent *bufev = arg;
77 bufferevent_read_pressure_cb(struct evbuffer *buf, size_t old, size_t now, void *arg) argument
H A Devport.c286 evport_dispatch(struct event_base *base, void *arg, struct timeval *tv) argument
289 struct evport_data *epdp = arg;
400 evport_add(void *arg, struct event *ev) argument
402 struct evport_data *evpd = arg;
442 evport_del(void *arg, struct event *ev) argument
444 struct evport_data *evpd = arg;
502 evport_dealloc(struct event_base *base, void *arg) argument
504 struct evport_data *evpd = arg;
H A Devrpc.c259 evrpc_request_cb(struct evhttp_request *req, void *arg) argument
261 struct evrpc *rpc = arg;
587 evrpc_reply_done(struct evhttp_request *req, void *arg) argument
589 struct evrpc_request_wrapper *ctx = arg;
650 evrpc_request_timeout(int fd, short what, void *arg) argument
652 struct evrpc_request_wrapper *ctx = arg;
/external/chromium/third_party/libevent/test/
H A Dregress_rpc.c100 MessageCb(EVRPC_STRUCT(Message)* rpc, void *arg)
122 NeverReplyCb(EVRPC_STRUCT(NeverReply)* rpc, void *arg)
159 rpc_postrequest_failure(struct evhttp_request *req, void *arg) argument
235 rpc_postrequest_done(struct evhttp_request *req, void *arg) argument
343 struct msg *msg, struct kill *kill, void *arg)
381 struct msg *msg, struct kill *kill, void *arg)
413 struct evbuffer *evbuf, void *arg)
415 const char *hook_type = arg;
425 struct evbuffer *evbuf, void *arg)
429 assert(strcmp(header, arg)
342 GotKillCb(struct evrpc_status *status, struct msg *msg, struct kill *kill, void *arg) argument
380 GotKillCbTwo(struct evrpc_status *status, struct msg *msg, struct kill *kill, void *arg) argument
412 rpc_hook_add_header(struct evhttp_request *req, struct evbuffer *evbuf, void *arg) argument
424 rpc_hook_remove_header(struct evhttp_request *req, struct evbuffer *evbuf, void *arg) argument
556 GotErrorCb(struct evrpc_status *status, struct msg *msg, struct kill *kill, void *arg) argument
[all...]
/external/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp349 Expr *arg = callE->getArg(i); local
350 if (arg == E || arg->IgnoreParenImpCasts() == E)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp52 const Expr *arg,
212 const Expr *arg,
226 report->addRange(arg->getSourceRange());
227 bugreporter::trackNullOrUndefValue(N, arg, *report);
247 const Expr *arg = CE->getArg(sizeArg); local
248 SVal argVal = state->getSVal(arg, C.getLocationContext());
255 (void) ReportZeroByteAllocation(C, falseState, arg, fn);
275 const Expr *arg = CE->getArg(i); local
276 SVal argVal = state->getSVal(arg, C.getLocationContext());
285 if (ReportZeroByteAllocation(C, falseState, arg, "callo
210 ReportZeroByteAllocation(CheckerContext &C, ProgramStateRef falseState, const Expr *arg, const char *fn_name) const argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-synthesis.cpp15 N(N const & arg){this->iN = arg.iN; } argument
64 S(const S& arg) { *this = arg; } argument
H A Dmangle-ms-back-references-pr13207.cpp43 N::Z z_foo(N::Z arg) { argument
45 return arg;
48 N::B<char> b_foo(N::B<char> arg) { argument
50 return arg;
53 N::D<char, char> d_foo(N::D<char, char> arg) { argument
55 return arg;
73 void foo5(NA::Y<NB::Y<NA::Y<NB::Y<NA::X> > > > arg) {} argument
/external/clang/test/SemaTemplate/
H A Dmember-function-template.cpp93 template <template <typename> class TC> void foo(const TC<T1>& arg);
97 void S<T1>::foo(const TC<T1>& arg) {} argument
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc35 void internal_start_thread(void(*func)(void*), void *arg) { argument
/external/dbus/bus/
H A Dmain.c301 const char *arg = argv[i]; local
303 if (strcmp (arg, "--help") == 0 ||
304 strcmp (arg, "-h") == 0 ||
305 strcmp (arg, "-?") == 0)
307 else if (strcmp (arg, "--version") == 0)
309 else if (strcmp (arg, "--introspect") == 0)
311 else if (strcmp (arg, "--nofork") == 0)
313 else if (strcmp (arg, "--fork") == 0)
315 else if (strcmp (arg, "--systemd-activation") == 0)
317 else if (strcmp (arg, "
[all...]
/external/dbus/tools/
H A Ddbus-cleanup-sockets.c388 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;
H A Ddbus-monitor.c247 char *arg = argv[i]; local
249 if (!strcmp (arg, "--system"))
251 else if (!strcmp (arg, "--session"))
253 else if (!strcmp (arg, "--address"))
263 else if (!strcmp (arg, "--help"))
265 else if (!strcmp (arg, "--monitor"))
267 else if (!strcmp (arg, "--profile"))
269 else if (!strcmp (arg, "--"))
271 else if (arg[0] == '-')
276 filters[j] = (char *)malloc((strlen(arg)
[all...]
H A Ddbus-send.c193 type_from_name (const char *arg) argument
196 if (!strcmp (arg, "string"))
198 else if (!strcmp (arg, "int16"))
200 else if (!strcmp (arg, "uint16"))
202 else if (!strcmp (arg, "int32"))
204 else if (!strcmp (arg, "uint32"))
206 else if (!strcmp (arg, "int64"))
208 else if (!strcmp (arg, "uint64"))
210 else if (!strcmp (arg, "double"))
212 else if (!strcmp (arg, "byt
257 char *arg = argv[i]; local
410 char *arg; local
[all...]

Completed in 744 milliseconds

<<11121314151617181920>>