Searched defs:options (Results 1 - 7 of 7) sorted by relevance

/system/core/libnetutils/
H A Ddhcpmsg.h57 uint8_t options[1024]; /* optional parameters */ member in struct:dhcp_msg
62 /* first four bytes of options are a cookie to indicate that
63 ** the payload are DHCP options as opposed to some other BOOTP
71 /* BOOTP/DHCP options - see RFC 2132 */
/system/core/sh/
H A Doptions.c1 /* $NetBSD: options.c,v 1.37 2004/10/30 19:29:27 christos Exp $ */
38 static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 5/4/95";
40 __RCSID("$NetBSD: options.c,v 1.37 2004/10/30 19:29:27 christos Exp $");
50 #include "options.h"
76 STATIC void options(int);
96 options(1);
147 * Process shell options. The global variable argptr contains a pointer
148 * to the argument list; we advance it past the options.
152 options(int cmdline) function
174 break; /* "-" or "--" terminates options */
[all...]
/system/core/toolbox/
H A Dmount.c36 * These options define the function of "mount(2)".
41 static const struct mount_opts options[] = { variable in typeref:struct:mount_opts
119 for (i = 0, res = 1; i < ARRAY_SIZE(options); i++) {
120 res = strcmp(s, options[i].str);
123 rwflag &= ~options[i].rwmask;
125 rwflag |= options[i].rwnoset;
127 rwflag |= options[i].rwset;
330 fprintf(stderr, "Usage: %s [-r] [-w] [-o options] [-t type] "
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp27 * This benchmark supports the following command-line options:
61 struct options { struct
66 } options = { // Set defaults variable in typeref:struct:options
136 *((opt == 'c') ? &options.clientCPU : &options.serverCPU) = cpu;
141 options.iterations = strtoul(optarg, &chptr, 10);
146 if (options.iterations < 1) {
154 options.iterDelay = strtod(optarg, &chptr);
155 if ((*chptr != '\0') || (options.iterDelay < 0.0)) {
163 cerr << basename(argv[0]) << " [options]" << end
[all...]
/system/core/adb/
H A Dsysdeps.h113 extern int adb_open(const char* path, int options);
142 static __inline__ int adb_open_mode(const char* path, int options, int mode) argument
144 return adb_open(path, options);
147 static __inline__ int unix_open(const char* path, int options,...) argument
149 if ((options & O_CREAT) == 0)
151 return open(path, options);
157 va_start( args, options );
160 return open(path, options, mode);
309 static __inline__ int unix_open(const char* path, int options,...) argument
311 if ((options
326 adb_open_mode( const char* pathname, int options, int mode ) argument
[all...]
H A Dsysdeps_win32.c303 int adb_open(const char* path, int options) argument
310 switch (options) {
321 D("adb_open: invalid options (0x%0x)\n", options);
/system/core/init/
H A Dbuiltins.c137 static int insmod(const char *filename, char *options) argument
147 ret = init_module(module, size, options);
266 char options[opt_len + 1]; local
269 options[0] = '\0';
271 strcpy(options, args[2]);
273 strcat(options, " ");
274 strcat(options, args[i]);
278 return insmod(args[1], options);
362 /* mount <type> <device> <path> <flags ...> <options> */
367 char *options local
[all...]

Completed in 605 milliseconds