OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:arg_idx
(Results
1 - 4
of
4
) sorted by null
/art/dalvikvm/
dalvikvm.cc
129
int curr_opt,
arg_idx
;
local
130
for (curr_opt =
arg_idx
= 0;
arg_idx
< argc;
arg_idx
++) {
131
if (argv[
arg_idx
][0] != '-' && !need_extra) {
134
if (strncmp(argv[
arg_idx
], "-XXlib:", strlen("-XXlib:")) == 0) {
135
lib = argv[
arg_idx
] + strlen("-XXlib:");
139
options[curr_opt++].optionString = argv[
arg_idx
];
143
if (strcmp(argv[
arg_idx
], "-classpath") == 0 || strcmp(argv[
arg_idx
], "-cp") == 0)
[
all
...]
/external/lldb/examples/lookup/
main.cpp
170
int
arg_idx
= 0;
local
172
const char *exe_file_path = argv[
arg_idx
];
179
while ((addr_cstr = argv[++
arg_idx
]) != NULL)
196
printf ("%sLooking up 0x%llx in '%s':\n", (
arg_idx
> 1) ? "\n" : "", file_addr, exe_file_path);
/system/core/init/
init.c
340
int
arg_idx
= svc->nargs;
local
349
arg_ptrs[
arg_idx
++] = bword;
350
if (
arg_idx
== INIT_PARSER_MAXARGS)
353
arg_ptrs[
arg_idx
] = '\0';
[
all
...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp
4156
size_t
arg_idx
= 0;
local
[
all
...]
Completed in 97 milliseconds