Searched defs:options (Results 1 - 9 of 9) 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/libziparchive/
H A Dzip_archive_test.cc536 static struct option options[] = { local
543 const int c = getopt_long_only(argc, argv, "", options, &option_index);
/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
120 for (i = 0, res = 1; i < ARRAY_SIZE(options); i++) {
121 res = strcmp(s, options[i].str);
124 rwflag &= ~options[i].rwmask;
126 rwflag |= options[i].rwnoset;
128 rwflag |= options[i].rwset;
353 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/extras/tests/memtest/
H A Dbandwidth.cpp66 bool processBandwidthOptions(int argc, char** argv, option_t options[], argument
72 for (int j = 0; options[j].name != NULL; j++) {
73 if (strcmp(arg, options[j].name) == 0) {
74 const char *name = options[j].name;
79 if (options[j].int_type) {
211 bool processThreadArgs(int argc, char** argv, option_t options[], argument
217 if (!processBandwidthOptions(argc, argv, options, values)) {
/system/extras/perfprofd/quipper/
H A Dperf_parser.cc53 PerfParser::PerfParser(const PerfParser::Options& options) { argument
54 options_ = options;
57 void PerfParser::set_options(const PerfParser::Options& options) { argument
58 options_ = options;
/system/core/adb/
H A Dsysdeps.h134 extern int adb_open(const char* path, int options);
161 static __inline__ int adb_open_mode(const char* path, int options, int mode) argument
163 return adb_open(path, options);
166 static __inline__ int unix_open(const char* path, int options,...) argument
168 if ((options & O_CREAT) == 0)
170 return open(path, options);
176 va_start( args, options );
179 return open(path, options, mode);
323 static __inline__ int unix_open(const char* path, int options,...) argument
325 if ((options
340 adb_open_mode( const char* pathname, int options, int mode ) argument
[all...]
H A Dsysdeps_win32.cpp329 int adb_open(const char* path, int options) argument
336 switch (options) {
347 D("adb_open: invalid options (0x%0x)\n", options);
/system/core/init/
H A Dbuiltins.cpp58 static int insmod(const char *filename, char *options) argument
72 return init_module(&module[0], module.size(), options);
181 char options[opt_len + 1]; local
184 options[0] = '\0';
186 strcpy(options, args[2]);
188 strcat(options, " ");
189 strcat(options, args[i]);
193 return insmod(args[1], options);
277 /* mount <type> <device> <path> <flags ...> <options> */
282 char *options local
[all...]

Completed in 200 milliseconds