Searched defs:arg (Results 476 - 500 of 888) sorted by relevance

<<11121314151617181920>>

/external/iptables/extensions/
H A Dlibxt_time.c193 const char **arg, char delim)
197 if (*arg == NULL || **arg == '\0')
199 sep = strchr(*arg, delim);
201 snprintf(buf, buflen, "%s", *arg);
202 *arg = NULL;
205 snprintf(buf, buflen, "%.*s", (unsigned int)(sep - *arg), *arg);
206 *arg = sep + 1;
210 static uint32_t time_parse_monthdays(const char *arg) argument
192 my_strseg(char *buf, unsigned int buflen, const char **arg, char delim) argument
227 time_parse_weekdays(const char *arg) argument
[all...]
/external/jpeg/
H A Dwrjpgcom.c384 keymatch (char * arg, const char * keyword, int minchars) argument
392 while ((ca = *arg++) != '\0') {
394 return 0; /* arg longer than keyword, no good */
395 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
416 char * arg; local
434 arg = argv[argn];
435 if (arg[0] != '-')
437 arg++; /* advance over '-' */
438 if (keymatch(arg, "replace", 1)) {
440 } else if (keymatch(arg, "cfil
[all...]
/external/kernel-headers/original/asm-x86/xen/
H A Dhypercall.h173 HYPERVISOR_sched_op(int cmd, unsigned long arg) argument
175 return _hypercall2(int, sched_op, cmd, arg);
205 HYPERVISOR_memory_op(unsigned int cmd, void *arg) argument
207 return _hypercall2(int, memory_op, cmd, arg);
229 HYPERVISOR_event_channel_op(int cmd, void *arg) argument
231 int rc = _hypercall2(int, event_channel_op, cmd, arg);
235 memcpy(&op.u, arg, sizeof(op.u));
237 memcpy(arg, &op.u, sizeof(op.u));
243 HYPERVISOR_xen_version(int cmd, void *arg) argument
245 return _hypercall2(int, xen_version, cmd, arg);
255 HYPERVISOR_physdev_op(int cmd, void *arg) argument
306 HYPERVISOR_nmi_op(unsigned long op, unsigned long arg) argument
367 MULTI_memory_op(struct multicall_entry *mcl, unsigned int cmd, void *arg) argument
[all...]
/external/libffi/src/
H A Dclosures.c287 const char *arg; member in struct:__anon7309
333 (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].arg);
/external/libppp/src/
H A Diface.c650 iface_Show(struct cmdargs const *arg) argument
653 struct iface *iface = arg->bundle->iface, *current;
665 prompt_Printf(arg->prompt, "%s (idx %d) <", iface->name, iface->index);
668 prompt_Printf(arg->prompt, "%s%s", flags == iface->flags ? "" : ",",
675 prompt_Printf(arg->prompt, "%s0x%x", flags == iface->flags ? "" : ",",
679 prompt_Printf(arg->prompt, "> mtu %lu has %d address%s:\n", iface->mtu,
686 prompt_Printf(arg->prompt, " inet %s --> ", ncpaddr_ntoa(&ncpaddr));
688 prompt_Printf(arg->prompt, "255.255.255.255");
690 prompt_Printf(arg->prompt, "%s", ncpaddr_ntoa(&iface->addr[f].peer));
692 prompt_Printf(arg
[all...]
H A Dipv6cp.c324 ipv6cp_Show(struct cmdargs const *arg) argument
326 struct ipv6cp *ipv6cp = &arg->bundle->ncp.ipv6cp;
328 prompt_Printf(arg->prompt, "%s [%s]\n", ipv6cp->fsm.name,
331 prompt_Printf(arg->prompt, " His side: %s\n",
333 prompt_Printf(arg->prompt, " My side: %s\n",
335 prompt_Printf(arg->prompt, " Queued packets: %lu\n",
339 prompt_Printf(arg->prompt, "\nDefaults:\n");
340 prompt_Printf(arg->prompt, " FSM retry = %us, max %u Config"
345 throughput_disp(&ipv6cp->throughput, arg->prompt);
H A Dlcp.c156 lcp_ReportStatus(struct cmdargs const *arg) argument
161 l = command_ChooseLink(arg);
164 prompt_Printf(arg->prompt, "%s: %s [%s]\n", l->name, lcp->fsm.name,
166 prompt_Printf(arg->prompt,
174 prompt_Printf(arg->prompt,
184 prompt_Printf(arg->prompt, "\n Defaults: MRU = %d (max %d), ",
187 prompt_Printf(arg->prompt, "\n Defaults: MRU = any (max %d), ",
190 prompt_Printf(arg->prompt, "MTU = %d (max %d), ",
193 prompt_Printf(arg->prompt, "MTU = any (max %d), ", lcp->cfg.max_mtu);
194 prompt_Printf(arg
[all...]
H A Dlog.c415 log_ShowLevel(struct cmdargs const *arg) argument
419 prompt_Printf(arg->prompt, "Log: ");
422 prompt_Printf(arg->prompt, " %s", log_Name(i));
424 prompt_Printf(arg->prompt, "\nLocal:");
426 if (log_IsKeptLocal(i, arg->prompt->logmask) & LOG_KEPT_LOCAL)
427 prompt_Printf(arg->prompt, " %s", log_Name(i));
429 prompt_Printf(arg->prompt, "\n");
435 log_SetLevel(struct cmdargs const *arg) argument
440 argc = arg->argc - arg
507 log_ShowWho(struct cmdargs const *arg) argument
[all...]
/external/libusb/examples/
H A Ddpfp_threaded.c79 static void *poll_thread_main(void *arg) argument
/external/linux-tools-perf/util/
H A Devent.c372 static int find_symbol_cb(void *arg, const char *name, char type, argument
375 struct process_symbol_args *args = arg;
/external/llvm/lib/MC/MCDisassembler/
H A DEDDisassembler.cpp57 /// @arg arch - The Triple::ArchType for the desired architecture
73 /// @arg arch - The target architecture
74 /// @arg syntax - The assembly syntax in sd form
206 void *arg) : Callback(callback), Arg(arg) { }
224 void *arg) {
225 EDMemoryObject memoryObject(byteReader, arg);
205 EDMemoryObject(EDByteReaderCallback callback, void *arg) argument
222 createInst(EDByteReaderCallback byteReader, uint64_t address, void *arg) argument
H A DEDMain.cpp71 void *arg) {
76 address, arg);
224 ::EDRegisterReaderCallback regReader, void *arg) {
225 return ((EDOperand*)operand)->evaluate(*result, regReader, arg);
236 void *arg) {
237 struct ByteReaderWrapper *wrapper = (struct ByteReaderWrapper *)arg;
66 EDCreateInsts(EDInstRef *insts, unsigned int count, EDDisassemblerRef disassembler, ::EDByteReaderCallback byteReader, uint64_t address, void *arg) argument
223 EDEvaluateOperand(uint64_t *result, EDOperandRef operand, ::EDRegisterReaderCallback regReader, void *arg) argument
234 readerWrapperCallback(uint8_t *byte, uint64_t address, void *arg) argument
/external/mdnsresponder/mDNSPosix/
H A DIdentify.c299 char *arg = argv[this_arg++]; local
307 if (inet_pton(AF_INET, arg, &s4) == 1)
319 else if (inet_pton(AF_INET6, arg, &s6) == 1)
339 if (strlen(arg) >= sizeof(hostname)) {
343 strcpy(hostname, arg);
/external/openssl/apps/
H A Dopenssl.c226 ARGS arg; local
287 arg.data=NULL;
288 arg.count=0;
414 if (!chopup_args(&arg,buf,&argc,&argv)) break;
437 if (arg.data != NULL) OPENSSL_free(arg.data);
661 const char *from, const char *to, void *arg)
664 BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
671 BIO_printf(arg, "%s => %s\n", from, to);
681 const char *from, const char *to, void *arg)
660 list_cipher_fn(const EVP_CIPHER *c, const char *from, const char *to, void *arg) argument
680 list_md_fn(const EVP_MD *m, const char *from, const char *to, void *arg) argument
[all...]
H A Ds_cb.c342 void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) argument
344 BIO *bio = arg;
658 void *arg)
660 BIO *bio = arg;
656 tlsext_cb(SSL *s, int client_server, int type, unsigned char *data, int len, void *arg) argument
/external/openssl/crypto/asn1/
H A Da_strex.c87 static int send_mem_chars(void *arg, const void *buf, int len)
89 unsigned char **out = arg;
97 static int send_bio_chars(void *arg, const void *buf, int len) argument
99 if(!arg) return 1;
100 if(BIO_write(arg, buf, len) != len) return 0;
104 static int send_fp_chars(void *arg, const void *buf, int len) argument
106 if(!arg) return 1;
107 if(fwrite(buf, 1, len, arg) != (unsigned int)len) return 0;
111 typedef int char_io(void *arg, const void *buf, int len);
120 static int do_esc_char(unsigned long c, unsigned char flags, char *do_quotes, char_io *io_ch, void *arg) argument
175 do_buf(unsigned char *buf, int buflen, int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg) argument
238 do_hex_dump(char_io *io_ch, void *arg, unsigned char *buf, int buflen) argument
262 do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) argument
314 do_print_ex(char_io *io_ch, void *arg, unsigned long lflags, ASN1_STRING *str) argument
381 do_indent(char_io *io_ch, void *arg, int indent) argument
392 do_name_ex(char_io *io_ch, void *arg, X509_NAME *n, int indent, unsigned long flags) argument
[all...]
/external/openssl/crypto/bio/
H A Db_sock.c547 int BIO_socket_ioctl(int fd, long type, void *arg) argument
552 i=ioctlsocket(fd,type,(char *)arg);
556 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
569 arg_32 = *((unsigned long *) arg);
571 # define ARG arg
574 # define ARG arg
H A Dbio_lib.c169 void BIO_set_callback_arg(BIO *b, char *arg) argument
171 b->cb_arg = arg;
/external/openssl/crypto/bn/
H A Dbntest.c1640 static int genprime_cb(int p, int n, BN_GENCB *arg) argument
/external/openssl/crypto/conf/
H A Dconf_mod.c581 int (*list_cb)(const char *elem, int len, void *usr), void *arg)
602 ret = list_cb(NULL, 0, arg);
614 ret = list_cb(lstart, tmpend - lstart + 1, arg);
580 CONF_parse_list(const char *list_, int sep, int nospc, int (*list_cb)(const char *elem, int len, void *usr), void *arg) argument
/external/openssl/crypto/x509v3/
H A Dv3_purp.c174 char *name, char *sname, void *arg)
213 ptmp->usr_data = arg;
172 X509_PURPOSE_add(int id, int trust, int flags, int (*ck)(const X509_PURPOSE *, const X509 *, int), char *name, char *sname, void *arg) argument
/external/openssl/ssl/
H A Ds3_lib.c3080 static char * MS_CALLBACK srp_password_from_info_cb(SSL *s, void *arg) argument
/external/oprofile/daemon/
H A Dopd_perfmon.c74 static int perfmonctl(int fd, int cmd, void * arg, int narg) argument
76 return syscall(__NR_perfmonctl, fd, cmd, arg, narg);
/external/oprofile/libpopt/
H A Dpopt.h20 #define POPT_ARG_NONE 0 /*!< no arg */
21 #define POPT_ARG_STRING 1 /*!< arg will be saved as string */
22 #define POPT_ARG_INT 2 /*!< arg will be converted to int */
23 #define POPT_ARG_LONG 3 /*!< arg will be converted to long */
24 #define POPT_ARG_INCLUDE_TABLE 4 /*!< arg points to table */
26 set first in table; arg points
31 included tables; arg points
33 #define POPT_ARG_VAL 7 /*!< arg should take value val */
34 #define POPT_ARG_FLOAT 8 /*!< arg will be converted to float */
35 #define POPT_ARG_DOUBLE 9 /*!< arg wil
120 void * arg; /*!< depends on argInfo */ member in struct:poptOption
[all...]
H A Dpopthelp.c27 * @param arg (unused)
33 /*@unused@*/ const char * arg, /*@unused@*/ void * data)
98 for (opt = table; opt->longName || opt->shortName || opt->arg; opt++) {
100 return opt->arg;
165 if (opt->arg) /* XXX programmer error */
169 { long aLong = *((int *)opt->arg);
173 { long aLong = *((long *)opt->arg);
177 { double aDouble = *((float *)opt->arg);
181 { double aDouble = *((double *)opt->arg);
185 { const char * s = *(const char **)opt->arg;
30 displayArgs(poptContext con, enum poptCallbackReason foo, struct poptOption * key, const char * arg, void * data) argument
[all...]

Completed in 461 milliseconds

<<11121314151617181920>>