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

/dalvik/dalvikvm/
H A DMain.cpp146 JavaVMOption* options = NULL; local
162 * We're over-allocating, because this includes the options to the VM
163 * plus the options to the program.
167 options = (JavaVMOption*) malloc(sizeof(JavaVMOption) * optionCount);
168 memset(options, 0, sizeof(JavaVMOption) * optionCount);
171 * Copy options over. Everything up to the name of the class starts
179 options[curOpt++].optionString = strdup(argv[argIdx]);
181 /* some options require an additional arg */
196 /* insert additional internal options here */
201 initArgs.options
[all...]
/dalvik/vm/
H A DDebugger.h94 u4 options; member in struct:DebugInvokeReq
287 u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj);
H A DDebugger.cpp2618 u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj)
2668 targetThread->invokeReq.options = options;
2690 if ((options & INVOKE_SINGLE_THREADED) == 0) {
2723 if ((options & INVOKE_SINGLE_THREADED) == 0) {
2782 if ((pReq->options & INVOKE_NONVIRTUAL) != 0 || pReq->obj == NULL ||
2616 dvmDbgInvokeMethod(ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, u4 numArgs, ObjectId* argArray, u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj) argument
/dalvik/vm/jdwp/
H A DJdwpHandler.cpp131 u4 options = read4BE(&buf); /* enum InvokeOptions bit flags */ local
132 ALOGV(" options=0x%04x%s%s", options,
133 (options & INVOKE_SINGLE_THREADED) ? " (SINGLE_THREADED)" : "",
134 (options & INVOKE_NONVIRTUAL) ? " (NONVIRTUAL)" : "");
141 numArgs, argArray, options,
/dalvik/dx/src/com/android/dx/dex/code/
H A DDops.java1202 * @param options {@code non-null;} options, used to determine
1208 public static Dop getNextOrNull(Dop opcode, DexOptions options) { argument
1209 boolean suppressExtendedOpcodes = !options.canUseExtendedOpcodes();

Completed in 643 milliseconds