HomeSort by relevance Sort by last modified time
    Searched full:g_long_options (Results 1 - 1 of 1) sorted by null

  /bionic/benchmarks/
bionic_benchmarks.cpp 78 static struct option g_long_options[] = variable in typeref:struct:option
108 // against g_long_options. It fills new_argv with the filtered args.
116 // Iterate through g_long_options until either we hit the end or we have a match.
117 for (opt_idx = 0; g_long_options[opt_idx].name &&
118 strncmp(g_long_options[opt_idx].name, optarg + 2,
119 strlen(g_long_options[opt_idx].name)); ++opt_idx) {
122 if (!g_long_options[opt_idx].name) {
125 if (g_long_options[opt_idx].has_arg == required_argument) {
149 while ((opt = getopt_long(argc, argv, "c:x:i:a:h", g_long_options, &option_index)) != -1) {

Completed in 489 milliseconds