Searched refs:options (Results 1 - 8 of 8) 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/docs/
H A Dprettify.js693 * @param {Object} options a set of optional parameters.
698 function sourceDecorator(options) {
700 if (options.tripleQuotedStrings) {
705 } else if (options.multiLineStrings) {
719 if (options.hashComments) {
722 if (options.cStyleComments) {
727 if (options.regexLiterals) {
745 var keywords = wordSet(options.keywords);
747 options = null;
/dalvik/dx/etc/
H A Ddx.bat51 rem This can be overridden by using "-JXmx..." and "-JXss..." options below.
55 REM Capture all arguments that are not -J options.
/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
H A DJni.cpp39 even access to fields with primitive types. Our options are more limited
3437 const char* optStr = args->options[i].optionString;
3442 gDvm.vfprintfHook = (int (*)(FILE *, const char*, va_list))args->options[i].extraInfo;
3444 gDvm.exitHook = (void (*)(int)) args->options[i].extraInfo;
3446 gDvm.abortHook = (void (*)(void))args->options[i].extraInfo;
3448 gDvm.isSensitiveThreadHook = (bool (*)(void))args->options[i].extraInfo;
/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 360 milliseconds