Searched refs:flags (Results 1 - 25 of 85) sorted by relevance

1234

/art/test/147-stripped-dex-fallback/
H A Drun17 # ensure flags includes prebuild.
18 flags="$@"
19 if [[ "${flags}" == *--no-prebuild* ]] ; then
24 ${RUN} ${flags} --strip-dex --no-dex2oat
/art/test/116-nodex2oat/
H A Drun17 flags="${@}"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 ${RUN} ${flags} --runtime-option -Xnodex2oat
33 ${RUN} ${flags} --runtime-option -Xdex2oat
37 ${RUN} ${flags}
/art/test/117-nopatchoat/
H A Drun17 # ensure flags includes prebuild and relocate. It doesn't make sense unless we
19 flags="$@"
24 if [[ "${flags}" == *--no-prebuild* ]] ; then
32 if [[ "${flags}" == *--no-relocate* ]] ; then
39 ${RUN} ${flags} --runtime-option -Xnodex2oat
43 ${RUN} ${flags} --runtime-option -Xdex2oat
47 ${RUN} ${flags}
/art/test/613-inlining-dex-cache/
H A Drun17 flags="$@"
20 exec ${RUN} ${flags/verify-at-runtime/interpret-only}
/art/test/134-nodex2oat-nofallback/
H A Drun17 flags="${@}"
20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
/art/test/118-noimage-dex2oat/
H A Drun17 flags="$@"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 if [[ "${flags}" == *--no-relocate* ]] ; then
50 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
54 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
58 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
62 ${RUN} ${flags} ${bpath_arg}
/art/test/119-noimage-patchoat/
H A Drun17 flags="$@"
21 if [[ "${flags}" == *--no-relocate* ]] ; then
34 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin}
38 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin} --runtime-option -Xno-dex-file-fallback
42 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
46 ${RUN} ${flags} ${BPATH}
/art/runtime/
H A Druntime_stats.h67 void Clear(int flags) { argument
68 if ((flags & KIND_ALLOCATED_OBJECTS) != 0) {
71 if ((flags & KIND_ALLOCATED_BYTES) != 0) {
74 if ((flags & KIND_FREED_OBJECTS) != 0) {
77 if ((flags & KIND_FREED_BYTES) != 0) {
80 if ((flags & KIND_GC_INVOCATIONS) != 0) {
83 if ((flags & KIND_CLASS_INIT_COUNT) != 0) {
86 if ((flags & KIND_CLASS_INIT_TIME) != 0) {
H A Dos.h46 // Open a file with the specified open(2) flags.
47 static File* OpenFileWithFlags(const char* name, int flags);
H A Dthread-inl.h128 if (UNLIKELY((old_state_and_flags.as_struct.flags & kCheckpointRequest) != 0)) {
132 // Change the state but keep the current flags (kCheckpointRequest is clear).
133 DCHECK_EQ((old_state_and_flags.as_struct.flags & kCheckpointRequest), 0);
134 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags;
149 uint16_t current_flags = tls32_.state_and_flags.as_struct.flags;
181 if (LIKELY(old_state_and_flags.as_struct.flags == 0)) {
195 } else if ((old_state_and_flags.as_struct.flags & kActiveSuspendBarrier) != 0) {
197 } else if ((old_state_and_flags.as_struct.flags & kCheckpointRequest) != 0) {
200 << " flags
[all...]
H A Dzip_archive.cc79 int flags = fcntl(fd, F_GETFD); local
80 if (flags == -1) {
84 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
86 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed"; local
H A Dos_linux.cc54 File* OS::OpenFileWithFlags(const char* name, int flags) { argument
57 if (!file->Open(name, flags, 0666)) {
H A Dmem_map.cc56 (it->flags & PROT_READ) ? 'r' : '-',
57 (it->flags & PROT_WRITE) ? 'w' : '-',
58 (it->flags & PROT_EXEC) ? 'x' : '-', it->name.c_str());
262 int flags,
265 void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, offset);
294 int flags = MAP_PRIVATE | MAP_ANONYMOUS; local
301 flags |= MAP_FIXED;
327 flags &= ~MAP_ANONYMOUS;
336 flags,
351 flags,
259 TryMemMapLow4GB(void* ptr, size_t page_aligned_byte_count, int prot, int flags, int fd, off_t offset) argument
373 MapFileAtAddress(uint8_t* expected_ptr, size_t byte_count, int prot, int flags, int fd, off_t start, bool low_4gb, bool reuse, const char* filename, std::string* error_msg) argument
544 int flags = MAP_PRIVATE | MAP_ANONYMOUS; local
770 MapInternal(void* addr, size_t length, int prot, int flags, int fd, off_t offset, bool low_4gb) argument
[all...]
H A Dmem_map.h85 int flags,
94 flags,
114 int flags,
215 int flags,
83 MapFile(size_t byte_count, int prot, int flags, int fd, off_t start, bool low_4gb, const char* filename, std::string* error_msg) argument
H A Druntime_linux.cc258 void DumpX86Flags(std::ostream& os, uint32_t flags) const {
260 if ((flags & (1 << 0)) != 0) {
263 if ((flags & (1 << 2)) != 0) {
266 if ((flags & (1 << 4)) != 0) {
269 if ((flags & (1 << 6)) != 0) {
272 if ((flags & (1 << 7)) != 0) {
275 if ((flags & (1 << 8)) != 0) {
278 if ((flags & (1 << 9)) != 0) {
281 if ((flags & (1 << 10)) != 0) {
284 if ((flags
[all...]
/art/runtime/base/
H A Dscoped_flock.h41 // The file is opened with the provided flags.
42 bool Init(const char* filename, int flags, bool block, std::string* error_msg);
/art/runtime/interpreter/mterp/mips/
H A Dop_goto_16.S16 addu a1, rINST, rINST # a1 <- byte offset, flags set
26 addu a1, rINST, rINST # a1 <- byte offset, flags set
/art/runtime/gc/collector/
H A Dsticky_mark_sweep.cc59 void StickyMarkSweep::MarkConcurrentRoots(VisitRootFlags flags) { argument
61 // Visit all runtime roots and clear dirty flags including class loader. This is done to prevent
69 static_cast<VisitRootFlags>(flags | kVisitRootFlagClassLoader));
H A Dsticky_mark_sweep.h36 void MarkConcurrentRoots(VisitRootFlags flags)
/art/runtime/interpreter/mterp/mips64/
H A Dop_goto.S20 lw ra, THREAD_FLAGS_OFFSET(rSELF) # Preload flags for MterpCheckSuspendAndContinue
H A Dop_goto_16.S19 lw ra, THREAD_FLAGS_OFFSET(rSELF) # Preload flags for MterpCheckSuspendAndContinue
/art/test/570-checker-osr/src/
H A DDeoptimizationController.java92 public static void startMethodTracing(String filename, int bufferSize, int flags, argument
94 startMethodTracingMethod.invoke(null, filename, bufferSize, flags, samplingEnabled,
/art/test/802-deoptimization/src/
H A DDeoptimizationController.java89 public static void startMethodTracing(String filename, int bufferSize, int flags, argument
91 startMethodTracingMethod.invoke(null, filename, bufferSize, flags, samplingEnabled,
/art/dexdump/
H A Ddexdump.cc197 * Returns a quoted string representing the access flags.
221 * Creates a new string with human-readable access flags.
226 static char* createAccessFlagStr(u4 flags, AccessFor forWhat) { argument
292 const int count = countOnes(flags);
298 if (flags & 0x01) {
307 flags >>= 1;
885 static void dumpCode(const DexFile* pDexFile, u4 idx, u4 flags, argument
902 bool is_static = (flags & kAccStatic) != 0;
912 static void dumpMethod(const DexFile* pDexFile, u4 idx, u4 flags, argument
915 if (gOptions.exportsOnly && (flags
1137 dumpSField(const DexFile* pDexFile, u4 idx, u4 flags, int i, EncodedStaticFieldValueIterator::ValueType valueType, const jvalue* pValue) argument
1187 dumpIField(const DexFile* pDexFile, u4 idx, u4 flags, int i) argument
[all...]
/art/runtime/lambda/
H A Dclosure.cc48 // Templatize the flags to give the compiler a fighting chance to eliminate
50 template <Closure::VariableInfo::Flags flags>
58 size_t offset = (flags & VariableInfo::kOffset) ? GetStartingOffset() : 0;
66 if (flags & VariableInfo::kOffset) {
77 if (flags & VariableInfo::kVariableType) {
81 if (flags & VariableInfo::kIndex) {
85 if (flags & VariableInfo::kCount) {
89 if (flags & VariableInfo::kOffset) {

Completed in 951 milliseconds

1234