Searched refs:options (Results 1 - 9 of 9) sorted by relevance

/dalvik/dalvikvm/
H A DMain.c146 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/libcore/luni/src/main/java/java/io/
H A DRandomAccessFile.java54 private int options; field in class:RandomAccessFile
113 options = 0;
121 options = IFileSystem.O_RDONLY;
124 options = IFileSystem.O_RDWR;
131 options = IFileSystem.O_RDWRSYNC;
145 fd.descriptor = fileSystem.open(file.pathBytes, options);
148 // options);
224 options);
/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/vm/
H A DDebugger.h94 u4 options; member in struct:DebugInvokeReq
288 u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj);
H A DDebugger.c2714 u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj)
2769 targetThread->invokeReq.options = options;
2791 if ((options & INVOKE_SINGLE_THREADED) == 0) {
2824 if ((options & INVOKE_SINGLE_THREADED) == 0) {
2881 if ((pReq->options & INVOKE_NONVIRTUAL) != 0 || pReq->obj == NULL ||
2712 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.c37 even access to fields with primitive types. Our options are more limited
4337 const char* optStr = args->options[i].optionString;
4343 gDvm.vfprintfHook = args->options[i].extraInfo;
4345 gDvm.exitHook = args->options[i].extraInfo;
4347 gDvm.abortHook = args->options[i].extraInfo;
/dalvik/vm/jdwp/
H A DJdwpHandler.c127 u4 options; /* enum InvokeOptions bit flags */ local
157 options = read4BE(&buf);
158 LOGV(" options=0x%04x%s%s\n", options,
159 (options & INVOKE_SINGLE_THREADED) ? " (SINGLE_THREADED)" : "",
160 (options & INVOKE_NONVIRTUAL) ? " (NONVIRTUAL)" : "");
168 numArgs, argArray, options,
/dalvik/libcore/x-net/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp1714 int options = SSL_CTX_get_options(ctx); local
1715 options |= protocol; // Note: SSLv2 disabled earlier.
1716 SSL_CTX_set_options(ctx, options);
/dalvik/libnativehelper/include/nativehelper/
H A Djni.h1088 JavaVMOption* options; member in struct:JavaVMInitArgs

Completed in 2713 milliseconds