Searched refs:mode (Results 1 - 25 of 28) sorted by relevance

12

/art/tools/
H A Dbuildbot-build.sh35 mode="target"
42 mode="host"
45 mode="target"
61 if [[ $mode == "host" ]]; then
65 elif [[ $mode == "target" ]]; then
/art/compiler/dex/
H A Dquick_compiler_callbacks.h30 CompilerCallbacks::CallbackMode mode)
31 : CompilerCallbacks(mode),
29 QuickCompilerCallbacks(VerificationResults* verification_results, CompilerCallbacks::CallbackMode mode) argument
/art/runtime/
H A Dcompiler_callbacks.h57 explicit CompilerCallbacks(CallbackMode mode) : mode_(mode) { } argument
H A Djni_internal.cc1978 jint mode) {
1988 ReleasePrimitiveArray(soa, array.Ptr(), component_size, elements, mode);
2024 jint mode) {
2026 mode);
2029 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte* elements, jint mode) { argument
2030 ReleasePrimitiveArray<jbyteArray, jbyte, mirror::ByteArray>(env, array, elements, mode);
2033 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar* elements, jint mode) { argument
2034 ReleasePrimitiveArray<jcharArray, jchar, mirror::CharArray>(env, array, elements, mode);
2038 jint mode) {
2039 ReleasePrimitiveArray<jdoubleArray, jdouble, mirror::DoubleArray>(env, array, elements, mode);
1977 ReleasePrimitiveArrayCritical(JNIEnv* env, jarray java_array, void* elements, jint mode) argument
2023 ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* elements, jint mode) argument
2037 ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble* elements, jint mode) argument
2042 ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat* elements, jint mode) argument
2047 ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint* elements, jint mode) argument
2051 ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong* elements, jint mode) argument
2055 ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort* elements, jint mode) argument
2482 ReleasePrimitiveArray(JNIEnv* env, ArrayT java_array, ElementT* elements, jint mode) argument
[all...]
H A Dcheck_jni.cc101 * r - jint (for release mode arguments)
118 jint r; // Release mode.
458 * r - jint (for release mode arguments)
741 * to "running" mode before doing the checks.
832 * Verify that the "mode" argument passed to a primitive array Release
835 bool CheckReleaseMode(jint mode) { argument
836 if (mode != 0 && mode != JNI_COMMIT && mode != JNI_ABORT) {
837 AbortF("unknown value for release mode
1440 ReleaseGuardedPACopy(const char* function_name, JNIEnv* env, jarray java_array ATTRIBUTE_UNUSED, void* embedded_buf, int mode) argument
2528 ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* carray, jint mode) argument
3431 ReleasePrimitiveArrayElements(const char* function_name, Primitive::Type type, JNIEnv* env, jarray array, void* elems, jint mode) argument
[all...]
H A Dimage.h388 std::ostream& operator<<(std::ostream& os, const ImageHeader::StorageMode& mode);
H A Druntime.h620 void SetSafeMode(bool mode) { argument
621 safe_mode_ = mode;
922 // Whether the application should run in safe mode, that is, interpreter only.
H A Doat_file_assistant.cc505 // Oat files compiled in PIC mode do not require relocation.
581 mode_t mode = S_IRWXU | S_IXGRP | S_IXOTH; local
582 if (mkdir(dir.c_str(), mode) != 0) {
586 if (chmod(dir.c_str(), mode) != 0) {
/art/runtime/interpreter/mterp/x86/
H A Dcvtfp_int.S5 * should be zero. Further, the rounding mode is to truncate. This model
18 fnstcw LOCAL0(%esp) # remember original rounding mode
22 fldcw LOCAL0+2(%esp) # set "to zero" rounding mode
29 fldcw LOCAL0(%esp) # restore previous rounding mode
/art/runtime/openjdkjvmti/
H A Devents.cc375 jvmtiEventMode mode) {
388 if (mode != JVMTI_ENABLE && mode != JVMTI_DISABLE) {
402 if (mode == JVMTI_ENABLE) {
406 DCHECK_EQ(mode, JVMTI_DISABLE);
416 HandleEventType(event, mode == JVMTI_ENABLE);
372 SetEvent(ArtJvmTiEnv* env, art::Thread* thread, ArtJvmtiEvent event, jvmtiEventMode mode) argument
H A Devents.h157 jvmtiEventMode mode);
H A DOpenjdkJvmTi.cc1048 jvmtiEventMode mode,
1068 return gEventHandler.SetEvent(art_env, art_thread, GetArtJvmtiEvent(art_env, event_type), mode);
1047 SetEventNotificationMode(jvmtiEnv* env, jvmtiEventMode mode, jvmtiEvent event_type, jthread event_thread, ...) argument
/art/oatdump/
H A Doatdump_test.cc80 Mode mode,
91 if (mode == kModeSymbolize) {
109 if (mode == kModeArt) {
117 CHECK_EQ(static_cast<size_t>(mode), static_cast<size_t>(kModeOat));
196 if (mode == kModeSymbolize) {
79 Exec(Flavor flavor, Mode mode, const std::vector<std::string>& args, Display display, std::string* error_msg) argument
/art/runtime/base/unix_file/
H A Dfd_file.h46 FdFile(const std::string& path, int flags, mode_t mode, bool checkUsage);
167 // Opens file 'file_path' using 'flags' and 'mode'.
169 bool Open(const std::string& file_path, int flags, mode_t mode);
H A Dfd_file.cc56 FdFile::FdFile(const std::string& path, int flags, mode_t mode, bool check_usage) argument
58 Open(path, flags, mode);
134 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { argument
138 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode));
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DDexRandomAccessFile.java44 * @param mode Strings "r" or "rw" work best.
46 public DexRandomAccessFile(String filename, String mode) argument
48 super(filename, mode);
/art/tools/golem/
H A Dbuild-target.sh160 mode="" # blank or 'golem' if --golem was specified.
178 mode="golem"
237 if [[ $mode == "golem" ]]; then
332 if [[ $mode == "golem" ]]; then
/art/tools/jfuzz/
H A Drun_jfuzz_test.py46 def GetExecutionModeRunner(use_dx, device, mode):
47 """Returns a runner for the given execution mode.
52 mode: string, execution mode
54 TestRunner with given execution mode
56 FatalError: error for unknown execution mode
58 if mode == 'ri':
60 if mode == 'hint':
62 if mode == 'hopt':
64 if mode
[all...]
/art/tools/common/
H A Dcommon.py199 outf = open(out, mode='w')
202 errf = open(err, mode='w')
296 x64: boolean, whether to setup in x64 mode.
407 with NamedTemporaryFile(mode='w') as temp_file:
414 with NamedTemporaryFile(mode='w') as temp_file:
/art/test/003-omnibus-opcodes/src/
H A DClasses.java57 java.math.RoundingMode mode = (java.math.RoundingMode) thisRef;
/art/runtime/openjdkjvm/
H A DOpenjdkJvm.cc73 JNIEXPORT jint JVM_Open(const char* fname, jint flags, jint mode) { argument
84 int fd = TEMP_FAILURE_RETRY(open(fname, flags & ~JVM_O_DELETE, mode));
/art/runtime/verifier/
H A Dmethod_verifier.h72 void Init(RegisterTrackingMode mode, InstructionFlags* flags, uint32_t insns_size,
/art/tools/bisection_search/
H A Dbisection_search.py241 with NamedTemporaryFile(mode='w', delete=False) as temp_file:
335 default=False, help='x64 mode')
/art/runtime/interpreter/mterp/out/
H A Dmterp_x86.S3548 * should be zero. Further, the rounding mode is to truncate. This model
3561 fnstcw LOCAL0(%esp) # remember original rounding mode
3565 fldcw LOCAL0+2(%esp) # set "to zero" rounding mode
3572 fldcw LOCAL0(%esp) # restore previous rounding mode
3615 * should be zero. Further, the rounding mode is to truncate. This model
3628 fnstcw LOCAL0(%esp) # remember original rounding mode
3632 fldcw LOCAL0+2(%esp) # set "to zero" rounding mode
3639 fldcw LOCAL0(%esp) # restore previous rounding mode
3705 * should be zero. Further, the rounding mode is to truncate. This model
3718 fnstcw LOCAL0(%esp) # remember original rounding mode
[all...]
/art/runtime/openjdkjvmti/include/
H A Djvmti.h1009 jvmtiEventMode mode,
2397 jvmtiError SetEventNotificationMode(jvmtiEventMode mode, argument
2401 return functions->SetEventNotificationMode(this, mode, event_type, event_thread);

Completed in 3699 milliseconds

12