Searched defs:argp (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexopt/
H A DOptMain.cpp466 char* const* argp; local
470 for (i = 0, argp = argv; i < argc; i++) {
471 ++argp;
472 ALOGV("DEP: '%s'", *argp);
473 bcpLen += strlen(*argp) + 1;
477 for (i = 0, argp = argv; i < argc; i++) {
480 ++argp;
481 strLen = strlen(*argp);
484 memcpy(cp, *argp, strLen);
/dalvik/vm/native/
H A Ddalvik_system_Zygote.cpp726 const char *argp[] = {_PATH_BSHELL, "-c", NULL, NULL}; local
727 argp[2] = dvmCreateCstrFromString(command);
729 ALOGI("Exec: %s %s %s", argp[0], argp[1], argp[2]);
731 execv(_PATH_BSHELL, (char**)argp);

Completed in 87 milliseconds