Searched refs:flags (Results 76 - 90 of 90) sorted by relevance

1234

/art/runtime/
H A Dcheck_jni.cc94 // Add this to a JNI function's flags if you want to trace every call.
315 ScopedCheck(uint16_t flags, const char* functionName, bool has_method = true) argument
316 : function_name_(functionName), indent_(0), flags_(flags), has_method_(has_method) {
1344 LOG(FATAL) << "Bad flags (internal error): " << flags_;
3441 int flags = critical ? kFlag_CritGet : kFlag_CritOkay; local
3442 ScopedCheck sc(flags, function_name);
3482 int flags = kFlag_ExcepOkay | kFlag_Release; local
3484 flags |= kFlag_CritRelease;
3486 ScopedCheck sc(flags, function_name);
H A Dclass_linker.h474 void VisitClassRoots(RootVisitor* visitor, VisitRootFlags flags)
477 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
H A Doat_file.cc1069 extinfo.flags = ANDROID_DLEXT_FORCE_LOAD | // Force-load, don't reuse handle
1075 extinfo.flags |= ANDROID_DLEXT_LOAD_AT_FIXED_ADDRESS; // Use the requested addr if
H A Dclass_linker.cc1922 void ClassLinker::VisitClassRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
1930 DCHECK_EQ(0, flags & (kVisitRootFlagNewRoots |
1935 if ((flags & kVisitRootFlagAllRoots) != 0) {
1958 if ((flags & kVisitRootFlagClassLoader) != 0 || tracing_enabled) {
1964 } else if (!kUseReadBarrier && (flags & kVisitRootFlagNewRoots) != 0) {
1985 if (!kUseReadBarrier && (flags & kVisitRootFlagClearRootLog) != 0) {
1989 if (!kUseReadBarrier && (flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
1991 } else if (!kUseReadBarrier && (flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
2001 void ClassLinker::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
2003 VisitClassRoots(visitor, flags);
[all...]
/art/tools/dmtracedump/
H A Dtracedump.cc1249 void printInclusiveMethod(MethodEntry* method, TimedMethod* list, int32_t numCalls, int32_t flags) { argument
1282 if (flags & kIsRecursive) {
1293 if (flags & kIsRecursive) {
/art/compiler/optimizing/
H A Dnodes.h1761 // Returns string representation of flags (for debugging only).
1764 std::string flags = "|"; local
1770 flags += "GC";
1772 flags += "|";
1778 flags += kDebug[s];
1782 flags += "|";
1786 return flags;
1843 // Private constructor on direct flags value.
1844 explicit SideEffects(uint64_t flags) : flags_(flags) {} argument
[all...]
/art/runtime/dex/
H A Ddex_file_annotations.cc1208 // Extract the parameters' access flags int[].
1476 bool GetInnerClassFlags(Handle<mirror::Class> klass, uint32_t* flags) { argument
1504 *flags = annotation_value.value_.GetI();
/art/runtime/gc/collector/
H A Dmark_sweep.cc69 // Profiling and information flags.
648 void MarkSweep::MarkConcurrentRoots(VisitRootFlags flags) { argument
650 // Visit all runtime roots and clear dirty flags.
651 Runtime::Current()->VisitConcurrentRoots(this, flags);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc271 jint flags ATTRIBUTE_UNUSED,
/art/runtime/verifier/
H A Dmethod_verifier.cc80 void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags, argument
89 interesting = flags[i].IsOpcode();
92 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
95 interesting = flags[i].IsBranchTarget();
705 // Abstract methods are not allowed to have the following flags.
1829 /* all flags are clear */
1835 // "changed" flags, we need to load the set of registers from the table.
2006 * The behavior can be determined from the opcode flags.
3884 // See if the method type implied by the invoke instruction matches the access flags fo
[all...]
/art/imgdiag/
H A Dimgdiag.cc1155 if ((map->flags & PROT_WRITE) != 0) {
1543 *error_msg = StringPrintf("Failed to read the page flags from %s",
/art/openjdkjvmti/include/
H A Djvmti.h882 jint flags,
/art/runtime/interpreter/mterp/out/
H A Dmterp_arm.S201 * bits that hold the shift distance are used for the half/byte/sign flags.
1275 fmstat @ export status flags
1314 fmstat @ export status flags
1353 fmstat @ export status flags
1392 fmstat @ export status flags
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S2125 lw $t9, ART_METHOD_ACCESS_FLAGS_OFFSET($t8) # $t9 = access flags.
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S2024 lw $t9, ART_METHOD_ACCESS_FLAGS_OFFSET($t1) # $t9 = access flags.

Completed in 360 milliseconds

1234