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

1234

/art/dex2oat/
H A Ddex2oat_image_test.cc327 uint32_t flags = ProfileCompilationInfo::MethodHotness::kFlagHot |
330 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags),
/art/test/099-vmdebug/src/
H A DMain.java335 public static void startMethodTracing(String filename, int bufferSize, int flags, argument
337 startMethodTracingMethod.invoke(null, filename, bufferSize, flags, samplingEnabled,
/art/tools/titrace/
H A Dinstruction_decoder.cc486 #define MAKE_ENUM_DEFINITION(opcode, instruction_code, name, format, index, flags, extended_flags, verifier_flags) \
497 #define MAKE_ENUM_DEFINITION(opcode, instruction_code, name, format, index, flags, extended_flags, verifier_flags) \
/art/runtime/
H A Druntime.cc921 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
1362 // Change the implicit checks flags based on runtime architecture.
2007 void Runtime::VisitConcurrentRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
2008 intern_table_->VisitRoots(visitor, flags);
2009 class_linker_->VisitRoots(visitor, flags);
2011 if ((flags & kVisitRootFlagNewRoots) == 0) {
2033 void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
2034 VisitThreadRoots(visitor, flags);
2038 void Runtime::VisitThreadRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
2039 thread_list_->VisitRoots(visitor, flags);
2042 VisitRoots(RootVisitor* visitor, VisitRootFlags flags) argument
[all...]
H A Delf_file_impl.h136 bool Setup(File* file, int prot, int flags, bool low_4gb, std::string* error_msg);
H A Dthread_list.h165 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags) const
H A Dthread.h253 (state_and_flags.as_struct.flags & kSuspendRequest) != 0;
630 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
1105 return (tls32_.state_and_flags.as_struct.flags & flag) != 0;
1109 return (tls32_.state_and_flags.as_struct.flags != 0);
1403 // 32 bits of atomically changed state and flags. Keeping as 32 bits allows and atomic CAS to
1410 volatile uint16_t flags; variable
H A Dtrace.cc322 void Trace::Start(const char* trace_filename, int trace_fd, size_t buffer_size, int flags, argument
360 // Enable count of allocs if specified in the flags.
374 enable_stats = (flags && kTraceCountAllocs) != 0;
375 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
551 // Enable count of allocs if specified in the flags.
598 Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags, argument
602 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
H A Dintern_table.h115 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
H A Dthread.cc1250 uint16_t flags = kSuspendRequest; local
1264 flags |= kActiveSuspendBarrier;
1283 tls32_.state_and_flags.as_atomic_int.FetchAndBitwiseOrSequentiallyConsistent(flags);
1394 new_state_and_flags.as_struct.flags |= kCheckpointRequest;
1423 new_state_and_flags.as_struct.flags |= kEmptyCheckpointRequest;
1687 << " flags=" << thread->tls32_.state_and_flags.as_struct.flags
2107 tls32_.state_and_flags.as_struct.flags = 0;
3810 void Thread::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) { argument
3811 if ((flags
[all...]
H A Dthread_list.cc1543 void ThreadList::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) const {
1546 thread->VisitRoots(visitor, flags);
/art/dexlist/
H A Ddexlist.cc98 const char* fileName, u4 idx, u4 flags ATTRIBUTE_UNUSED,
/art/dt_fd_forward/
H A Ddt_fd_forward.cc464 pkt_->type.cmd.flags = ReadByte();
469 } else if ((pkt_->type.reply.flags & JDWPTRANSPORT_FLAGS_REPLY) == JDWPTRANSPORT_FLAGS_REPLY) {
582 PushByte(pkt_->type.cmd.flags);
583 if ((pkt_->type.reply.flags & JDWPTRANSPORT_FLAGS_REPLY) == JDWPTRANSPORT_FLAGS_REPLY) {
/art/runtime/dex/
H A Ddex_file_annotations.h82 // If yes, return the associated access flags, i.e. kAccFastNative or kAccCriticalNative.
103 bool GetInnerClassFlags(Handle<mirror::Class> klass, uint32_t* flags)
/art/test/449-checker-bce/src/
H A DMain.java37 boolean[] flags = new boolean[size + 1];
38 for (int i = 1; i < size; i++) flags[i] = true; // Can eliminate.
40 if (flags[i]) { // Can eliminate.
43 flags[k - 1] = false; // Can't eliminate yet due to (k+i) may overflow.
/art/runtime/mirror/
H A Dclass.cc297 void Class::DumpClass(std::ostream& os, int flags) { argument
298 if ((flags & kDumpClassFullDetail) == 0) {
300 if ((flags & kDumpClassClassLoader) != 0) {
303 if ((flags & kDumpClassInitialized) != 0) {
1397 uint32_t flags; local
1398 if (!annotations::GetInnerClassFlags(h_this, &flags)) {
1401 return flags;
/art/libdexfile/dex/
H A Ddex_instruction.cc63 #define INSTRUCTION_DESCR(opcode, c, p, format, index, flags, eflags, vflags) \
67 flags, \
515 // Add some checks that ensure the flags make sense. We need a subclass to be in the context of
516 // Instruction. Otherwise the flags from the instruction list don't work.
H A Ddex_file_verifier.cc119 *error_msg = "Method index not available for method flags verification";
126 *error_msg = "String index not available for method flags verification";
133 *error_msg = "String offset out of bounds for method flags verification";
139 *error_msg = "String size out of bounds for method flags verification";
146 // Gets constructor flags based on the |method_name|. Returns true if
662 // Check field access flags.
1118 // These calls use the raw access flags to check whether the whole dex field is valid.
2281 ErrorStringPrintf("Invalid class flags: '%d'", item->access_flags_);
2892 static bool CheckAtMostOneOfPublicProtectedPrivate(uint32_t flags) { argument
2893 size_t count = (((flags
[all...]
/art/runtime/gc/collector/
H A Dmark_sweep.h100 virtual void MarkConcurrentRoots(VisitRootFlags flags)
/art/runtime/interpreter/mterp/
H A Dmterp.cc662 extern "C" void MterpLogSuspendFallback(Thread* self, ShadowFrame* shadow_frame, uint32_t flags)
667 if (flags & kCheckpointRequest) {
669 } else if (flags & kSuspendRequest) {
671 } else if (flags & kEmptyCheckpointRequest) {
/art/adbconnection/
H A Dadbconnection.cc274 static bool FlagsSet(int16_t data, int16_t flags) { argument
275 return (data & flags) == flags;
350 // next the flags. (0 for cmd packet because DDMS).
/art/runtime/jit/
H A Dprofile_saver.cc434 uint8_t flags = Hotness::kFlagHot; local
435 flags |= startup ? Hotness::kFlagStartup : Hotness::kFlagPostStartup;
437 static_cast<Hotness::Flag>(flags),
H A Dprofile_compilation_info_test.cc104 Hotness::Flag flags) {
112 if (!info.AddMethods(profile_methods, flags) || !info.AddClasses(resolved_classes)) {
135 Hotness::Flag flags,
176 if (!info.AddMethods(profile_methods, flags)
100 SaveProfilingInfo( const std::string& filename, const std::vector<ArtMethod*>& methods, const std::set<DexCacheResolvedClasses>& resolved_classes, Hotness::Flag flags) argument
132 SaveProfilingInfoWithFakeInlineCaches( const std::string& filename, const std::vector<ArtMethod*>& methods, Hotness::Flag flags, SafeMap<ArtMethod*, ProfileMethodInfo>* profile_methods_map) argument
/art/profman/
H A Dprofile_assistant_test.cc89 Hotness::Flag flags = Hotness::kFlagPostStartup; local
92 dex_location2, dex_location_checksum2, i, number_of_methods2, pmi, flags));
94 dex_location1, dex_location_checksum1, i, number_of_methods1, pmi, flags));
97 dex_location1, dex_location_checksum1, i, number_of_methods1, pmi, flags));
99 dex_location2, dex_location_checksum2, i, number_of_methods2, pmi, flags));
/art/runtime/verifier/
H A Dmethod_verifier.h77 void Init(RegisterTrackingMode mode, InstructionFlags* flags, uint32_t insns_size,
147 // Dump the state of the verifier, namely each instruction, what flags are set on it, register
342 * Set the "in try" flags for all instructions protected by "try" statements. Also sets the
343 * "branch target" flags for exception handlers.
363 * As a side effect, this sets the "branch target" flags in InsnFlags.
537 * addresses. Does not set or clear any other flags in "insn_flags_".
722 const uint32_t method_access_flags_; // Method's access flags.
732 // Instruction widths and flags, one entry per code unit.
801 // the flags in the dex file. Some older code does not mark methods named "<init>" and "<clinit>"

Completed in 758 milliseconds

1234