Searched defs:arg (Results 451 - 475 of 1505) sorted by relevance

<<11121314151617181920>>

/external/compiler-rt/lib/asan/
H A Dasan_stats.cc79 static void MergeThreadStats(ThreadContextBase *tctx_base, void *arg) { argument
80 AsanStats *accumulated_stats = reinterpret_cast<AsanStats*>(arg);
/external/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc112 static void ProcessPlatformSpecificAllocationsCb(uptr chunk, void *arg) { argument
113 CHECK(arg);
115 reinterpret_cast<ProcessPlatformAllocParam *>(arg);
153 ProcessPlatformAllocParam arg = {frontier, &stack_depot_reverse_map}; local
154 ForEachChunk(ProcessPlatformSpecificAllocationsCb, &arg);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cc152 static void *WorkerThread(void *arg) { argument
/external/deqp/executor/tools/
H A DxeMergeTestLogs.cpp172 const char* arg = argv[argNdx]; local
174 if (!deStringBeginsWith(arg, "--"))
175 cmdLine.srcFilenames.push_back(arg);
176 else if (deStringBeginsWith(arg, "--dst="))
180 cmdLine.dstFilename = arg+6;
182 else if (deStringEqual(arg, "--info=first"))
184 else if (deStringEqual(arg, "--info=last"))
/external/deqp/framework/delibs/destream/
H A DdeThreadStream.c47 static void inStreamCopy (void* arg) argument
49 deThreadInStream* threadStream = (deThreadInStream*)arg;
/external/dhcpcd/
H A Darp.c105 handle_arp_packet(void *arg) argument
107 struct interface *iface = arg;
201 send_arp_announce(void *arg) argument
203 struct interface *iface = arg;
248 send_arp_probe(void *arg) argument
250 struct interface *iface = arg;
H A Deloop.c45 void *arg; member in struct:event
53 void *arg; member in struct:timeout
63 add_event(int fd, void (*callback)(void *), void *arg) argument
71 e->arg = arg;
85 e->arg = arg;
114 const struct timeval *when, void (*callback)(void *), void *arg)
129 if (t->callback == callback && t->arg == arg) {
113 add_q_timeout_tv(int queue, const struct timeval *when, void (*callback)(void *), void *arg) argument
174 add_q_timeout_sec(int queue, time_t when, void (*callback)(void *), void *arg) argument
187 v_delete_q_timeouts(int queue, void *arg, void (*callback)(void *), va_list v) argument
217 delete_q_timeouts(int queue, void *arg, void (*callback)(void *), ...) argument
227 delete_q_timeout(int queue, void (*callback)(void *), void *arg) argument
[all...]
/external/elfutils/0.153/lib/
H A Dcolor.c41 static error_t parse_opt (int key, char *arg, struct argp_state *state);
85 parse_opt (int key, char *arg, argument
91 if (arg == NULL)
114 if (strcmp (arg, values[i].str) == 0)
130 program_invocation_short_name, arg);
/external/elfutils/0.153/libasm/
H A Ddisasm_cb.c45 char **buf, size_t *buflen, void *arg)
47 struct symtoken *symtoken = (struct symtoken *) arg;
145 void *arg __attribute__ ((unused)))
44 default_elf_getsym(GElf_Addr addr, Elf32_Word scnndx, GElf_Addr value, char **buf, size_t *buflen, void *arg) argument
/external/elfutils/0.153/libdwfl/
H A Dcu.c151 nofree (void *arg) argument
153 struct dwfl_cu *cu = arg;
H A Delf-from-memory.c77 ssize_t (*read_memory) (void *arg, void *data,
81 void *arg)
94 ssize_t nread = (*read_memory) (arg, buffer, ehdr_vma,
195 nread = (*read_memory) (arg, buffer, ehdr_vma + phoff,
290 nread = (*read_memory) (arg, buffer + start,
75 elf_from_remote_memory(GElf_Addr ehdr_vma, GElf_Addr *loadbasep, ssize_t (*read_memory) (void *arg, void *data, GElf_Addr address, size_t minread, size_t maxread), void *arg) argument
/external/icu/icu4c/source/samples/date/
H A Ddate.c68 char *arg; local
80 arg = argv[optInd];
83 if(strcmp(arg, "-v") == 0 || strcmp(arg, "--version") == 0) {
87 else if(strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) {
91 else if(strcmp(arg, "-u") == 0 || strcmp(arg, "--gmt") == 0) {
95 else if(strcmp(arg, "-f") == 0 || strcmp(arg, "
[all...]
/external/iproute2/ip/
H A Dipaddrlabel.c57 int print_addrlabel(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
59 FILE *fp = (FILE*)arg;
193 static int flush_addrlabel(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
H A Diplink_can.c50 static int get_float(float *val, const char *arg) argument
55 if (!arg || !*arg)
57 res = strtof(arg, &ptr);
58 if (!ptr || ptr == arg || *ptr)
64 static void set_ctrlmode(char* name, char *arg, argument
67 if (strcmp(arg, "on") == 0) {
69 } else if (strcmp(arg, "off") != 0) {
/external/iproute2/lib/
H A Dll_map.c48 struct nlmsghdr *n, void *arg)
47 ll_remember_index(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
/external/iproute2/tc/
H A Dm_csum.c177 print_csum(struct action_util *au, FILE * f, struct rtattr *arg) argument
193 if (arg == NULL)
196 parse_rtattr_nested(tb, TCA_CSUM_MAX, arg);
H A Dm_mirred.c249 print_mirred(struct action_util *au,FILE * f, struct rtattr *arg) argument
256 if (arg == NULL)
259 parse_rtattr_nested(tb, TCA_MIRRED_MAX, arg);
H A Dm_police.c48 static void explain1(char *arg) argument
50 fprintf(stderr, "Illegal \"%s\"\n", arg);
75 int police_action_a2n(char *arg, int *result) argument
79 if (matches(arg, "continue") == 0)
81 else if (matches(arg, "drop") == 0)
83 else if (matches(arg, "shot") == 0)
85 else if (matches(arg, "pass") == 0)
87 else if (strcmp(arg, "ok") == 0)
89 else if (matches(arg, "reclassify") == 0)
91 else if (matches(arg, "pip
103 get_police_result(int *action, int *result, char *arg) argument
322 print_police(struct action_util *a, FILE *f, struct rtattr *arg) argument
369 tc_print_police(FILE *f, struct rtattr *arg) argument
[all...]
H A Dm_xt.c270 print_ipt(struct action_util *au,FILE * f, struct rtattr *arg) argument
275 if (arg == NULL)
281 parse_rtattr_nested(tb, TCA_IPT_MAX, arg);
H A Dq_htb.c54 static void explain1(char *arg) argument
56 fprintf(stderr, "Illegal \"%s\"\n", arg);
H A Dq_tbf.c33 static void explain1(char *arg) argument
35 fprintf(stderr, "Illegal \"%s\"\n", arg);
H A Dtc_filter.c186 void *arg)
188 FILE *fp = (FILE*)arg;
184 print_filter(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
H A Dtc_qdisc.c199 void *arg)
201 FILE *fp = (FILE*)arg;
197 print_qdisc(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) argument
/external/ipsec-tools/src/racoon/
H A Drsalist.c92 rsa_key_dump_one(void *entry, void *arg) argument
112 rsa_list_count_one(void *entry, void *arg) argument
114 if (arg)
115 (*(unsigned long *)arg)++;
/external/iptables/extensions/
H A Dlibip6t_DNAT.c49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
52 arg = strdup(orig_arg);
53 if (arg == NULL)
56 start = strchr(arg, '[');
58 start = arg;
60 colon = strchr(arg, ':');
114 if (colon == arg || colon == arg+2) {
115 free(arg);
143 free(arg);
[all...]

Completed in 304 milliseconds

<<11121314151617181920>>