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

1234

/art/test/151-OpenFileLimit/
H A Drun17 flags="$@"
21 ${RUN} ${flags}
/art/test/116-nodex2oat/
H A Drun17 flags="${@}"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 ${RUN} ${flags} --runtime-option -Xnodex2oat
34 ${RUN} ${flags} --runtime-option -Xdex2oat
39 ${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
44 ${RUN} ${flags} --runtime-option -Xdex2oat
49 ${RUN} ${flags}
/art/test/613-inlining-dex-cache/
H A Drun17 flags="$@"
20 exec ${RUN} ${flags/verify-at-runtime/interpret-only}
/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 --runtime-option -Xnodex2oat
/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
55 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat \
61 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
66 ${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 \
40 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
47 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
52 ${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 Dthread-inl.h188 if (UNLIKELY((old_state_and_flags.as_struct.flags & kCheckpointRequest) != 0)) {
192 if (UNLIKELY((old_state_and_flags.as_struct.flags & kEmptyCheckpointRequest) != 0)) {
196 // Change the state but keep the current flags (kCheckpointRequest is clear).
197 DCHECK_EQ((old_state_and_flags.as_struct.flags & kCheckpointRequest), 0);
198 DCHECK_EQ((old_state_and_flags.as_struct.flags & kEmptyCheckpointRequest), 0);
199 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags;
214 uint16_t current_flags = tls32_.state_and_flags.as_struct.flags;
248 if (LIKELY(old_state_and_flags.as_struct.flags == 0)) {
262 } else if ((old_state_and_flags.as_struct.flags
[all...]
H A Dmem_map.h115 int flags,
124 flags,
144 int flags,
254 int flags,
261 int flags,
113 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 Dmem_map.cc69 (entry->flags & PROT_READ) ? 'r' : '-',
70 (entry->flags & PROT_WRITE) ? 'w' : '-',
71 (entry->flags & PROT_EXEC) ? 'x' : '-', entry->name.c_str());
277 int flags,
280 void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, offset);
310 int flags = MAP_PRIVATE | MAP_ANONYMOUS; local
317 flags |= MAP_FIXED;
351 flags &= ~MAP_ANONYMOUS;
361 flags,
378 flags,
274 TryMemMapLow4GB(void* ptr, size_t page_aligned_byte_count, int prot, int flags, int fd, off_t offset) argument
484 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
657 int flags = MAP_PRIVATE | MAP_ANONYMOUS; local
902 MapInternalArtLow4GBAllocator(size_t length, int prot, int flags, int fd, off_t offset) argument
995 MapInternal(void* addr, size_t length, int prot, int flags, int fd, off_t offset, bool low_4gb) argument
[all...]
H A Druntime_common.cc142 void DumpX86Flags(std::ostream& os, uint32_t flags) const;
297 void UContext::DumpX86Flags(std::ostream& os, uint32_t flags) const {
299 if ((flags & (1 << 0)) != 0) {
302 if ((flags & (1 << 2)) != 0) {
305 if ((flags & (1 << 4)) != 0) {
308 if ((flags & (1 << 6)) != 0) {
311 if ((flags & (1 << 7)) != 0) {
314 if ((flags & (1 << 8)) != 0) {
317 if ((flags & (1 << 9)) != 0) {
320 if ((flags
[all...]
/art/libdexfile/dex/
H A Dhidden_api_access_flags.h26 /* This class is used for encoding and decoding access flags of class members
27 * from the boot class path. These access flags might contain additional two bits
38 * First bit is encoded as inversion of visibility flags (public/private/protected).
40 * this is interpreted as the first bit being set and actual visibility flags
41 * being the complement of the encoded flags.
47 * encoding of the access flags.
52 * Two bits are set aside in the uint32_t access flags in the intrinsics ordinal
68 DexHiddenAccessFlags flags(dex_access_flags);
69 uint32_t int_value = (flags.IsFirstBitSet() ? 1 : 0) + (flags
[all...]
/art/profman/
H A Dboot_image_profile.cc85 const uint32_t flags = it.GetFieldAccessFlags(); local
86 if ((flags & kAccFinal) == 0) {
95 const uint32_t flags = it.GetMethodAccessFlags(); local
96 if ((flags & kAccNative) != 0) {
101 if ((flags & kAccConstructor) != 0 && (flags & kAccStatic) != 0) {
/art/libartbase/base/
H A Dos.h48 // Open a file with the specified open(2) flags.
49 static File* OpenFileWithFlags(const char* name, int flags, bool auto_flush = true);
H A Dos_linux.cc56 File* OS::OpenFileWithFlags(const char* name, int flags, bool auto_flush) { argument
58 bool read_only = ((flags & O_ACCMODE) == O_RDONLY);
60 std::unique_ptr<File> file(new File(name, flags, 0666, check_usage));
H A Dscoped_flock.cc35 /* static */ ScopedFlock LockedFile::Open(const char* filename, int flags, bool block, argument
43 std::unique_ptr<File> file(OS::OpenFileWithFlags(filename, flags, false /* check_usage */));
/art/runtime/gc/collector/
H A Dsticky_mark_sweep.cc63 void StickyMarkSweep::MarkConcurrentRoots(VisitRootFlags flags) { argument
65 // Visit all runtime roots and clear dirty flags including class loader. This is done to prevent
73 static_cast<VisitRootFlags>(flags | kVisitRootFlagClassLoader));
H A Dsticky_mark_sweep.h36 virtual void MarkConcurrentRoots(VisitRootFlags flags)
/art/libartbase/base/unix_file/
H A Dfd_file.h44 FdFile(const std::string& path, int flags, bool checkUsage) argument
45 : FdFile(path, flags, 0640, checkUsage) {}
46 FdFile(const std::string& path, int flags, mode_t mode, bool checkUsage);
173 // Opens file 'file_path' using 'flags' and 'mode'.
174 bool Open(const std::string& file_path, int flags);
175 bool Open(const std::string& file_path, int flags, mode_t mode);
H A Dfd_file.cc57 FdFile::FdFile(const std::string& path, int flags, mode_t mode, bool check_usage) argument
59 Open(path, flags, mode);
132 bool FdFile::Open(const std::string& path, int flags) { argument
133 return Open(path, flags, 0640);
136 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { argument
139 read_only_mode_ = ((flags & O_ACCMODE) == O_RDONLY);
140 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode));
145 if (kCheckSafeUsage && (flags & (O_RDWR | O_CREAT | O_WRONLY)) != 0) {
/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/dexlayout/
H A Ddexlayout.h151 void DumpIField(uint32_t idx, uint32_t flags, int i);
159 void DumpMethod(uint32_t idx, uint32_t flags, const dex_ir::CodeItem* code, int i);
161 void DumpSField(uint32_t idx, uint32_t flags, int i, dex_ir::EncodedValue* init);

Completed in 4461 milliseconds

1234