HomeSort by relevance Sort by last modified time
    Searched refs:access_flags (Results 1 - 25 of 73) sorted by null

1 2 3

  /art/compiler/jni/quick/
jni_compiler.h 29 uint32_t access_flags,
jni_compiler.cc 121 uint32_t access_flags,
125 const bool is_native = (access_flags & kAccNative) != 0;
127 const bool is_static = (access_flags & kAccStatic) != 0;
128 const bool is_synchronized = (access_flags & kAccSynchronized) != 0;
141 << " :: access_flags = " << std::hex << access_flags << std::dec;
    [all...]
  /external/strace/xlat/
access_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/access_flags.in; do not edit. */
5 # error static const struct xlat access_flags in mpers mode
10 const struct xlat access_flags[] = { variable in typeref:struct:xlat
  /external/strace/
access.c 5 #include "xlat/access_flags.h"
12 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
  /art/compiler/driver/
dex_compilation_unit.cc 30 uint32_t access_flags,
39 access_flags_(access_flags),
dex_compilation_unit.h 43 uint32_t access_flags,
  /art/compiler/debug/
method_debug_info.h 31 uint32_t access_flags; member in struct:art::debug::MethodDebugInfo
  /art/compiler/dex/
dex_to_dex_compiler.h 43 uint32_t access_flags,
verification_results.cc 144 const uint32_t access_flags) {
150 ((access_flags & kAccConstructor) != 0) && ((access_flags & kAccStatic) != 0)) {
verification_results.h 60 bool IsCandidateForCompilation(MethodReference& method_ref, const uint32_t access_flags);
  /external/libchrome/sandbox/linux/syscall_broker/
broker_file_permission_unittest.cc 81 // CheckPerm tests |path| against |perm| given |access_flags|.
85 int access_flags,
92 switch (access_flags) {
153 perm.CheckOpen(path, access_flags | flag, &file_to_open, NULL));
159 perm.CheckOpen(path, access_flags | flag, &file_to_open, NULL));
164 ASSERT_TRUE(perm.CheckOpen(path, O_CREAT | O_EXCL | access_flags,
168 ASSERT_FALSE(perm.CheckOpen(path, O_CREAT | O_EXCL | access_flags,
216 int access_flags) {
218 ASSERT_FALSE(perm.CheckOpen(path, access_flags, NULL, &unlink));
219 ASSERT_FALSE(perm.CheckOpen(path, access_flags | O_CREAT, NULL, &unlink))
    [all...]
  /art/compiler/
compiler.h 64 uint32_t access_flags,
72 virtual CompiledMethod* JniCompile(uint32_t access_flags,
  /external/emma/core/java12/com/vladium/jcd/cls/
Field_info.java 24 * u2 access_flags;
32 * The value of the access_flags item is a mask of modifiers used to describe
62 public Field_info (final int access_flags,
66 m_access_flags = access_flags;
Method_info.java 25 * u2 access_flags;
33 * The value of the access_flags item is a mask of modifiers used to describe
64 public Method_info (int access_flags, int name_index, int descriptor_index, IAttributeCollection attributes)
66 m_access_flags = access_flags;
ClassDef.java 539 public int addField (final String name, final String descriptor, final int access_flags)
547 final Field_info field = new Field_info (access_flags, name_index, descriptor_index,
556 public int addField (final String name, final String descriptor, final int access_flags,
565 final Field_info field = new Field_info (access_flags, name_index, descriptor_index, attributes);
573 public Method_info newEmptyMethod (final String name, final String descriptor, final int access_flags)
588 final Method_info method = new Method_info (access_flags, name_index, descriptor_index, attributes);
  /art/runtime/verifier/
reg_type-inl.h 47 inline bool RegType::CanAccessMember(ObjPtr<mirror::Class> klass, uint32_t access_flags) const {
48 if ((access_flags & kAccPublic) != 0) {
52 return GetClass()->CanAccessMember(klass, access_flags);
verifier_deps.h 135 ClassResolution(dex::TypeIndex type_idx, uint16_t access_flags)
136 : ClassResolutionBase(type_idx, access_flags) {}
147 FieldResolution(uint32_t field_idx, uint16_t access_flags, dex::StringIndex declaring_class_idx)
148 : FieldResolutionBase(field_idx, access_flags, declaring_class_idx) {}
161 uint16_t access_flags,
163 : MethodResolutionBase(method_idx, access_flags, declaring_class_idx) {}
  /art/runtime/
utils.cc 236 std::string PrettyJavaAccessFlags(uint32_t access_flags) {
238 if ((access_flags & kAccPublic) != 0) {
241 if ((access_flags & kAccProtected) != 0) {
244 if ((access_flags & kAccPrivate) != 0) {
247 if ((access_flags & kAccFinal) != 0) {
250 if ((access_flags & kAccStatic) != 0) {
253 if ((access_flags & kAccAbstract) != 0) {
256 if ((access_flags & kAccInterface) != 0) {
259 if ((access_flags & kAccTransient) != 0) {
262 if ((access_flags & kAccVolatile) != 0)
    [all...]
reflection.h 101 uint32_t access_flags,
109 uint32_t access_flags,
dex_file_verifier.h 80 uint32_t access_flags,
85 uint32_t access_flags,
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 187 int access_flags; // uleb128 field in class:DexClassImpl.EncodedField
192 int access_flags;// uleb128 field in class:DexClassImpl.EncodedMethod
220 fields[i].access_flags = buffer.readUleb128();
230 methods[i].access_flags = buffer.readUleb128();
264 int accessFlags = fields[i].access_flags;
299 method.access_flags, idToMethodAnnotation
339 return classDefItem.access_flags;
DexFileReader.java 245 public int access_flags; field in class:DexFileReader.ClassDefItem
263 item.access_flags = b.readUInt();
  /art/runtime/native/
java_lang_reflect_Executable.cc 102 MutableHandle<mirror::IntArray> access_flags = hs.NewHandle<mirror::IntArray>(nullptr); local
103 if (!annotations::GetParametersMetadataForMethod(art_method, &names, &access_flags)) {
108 if (UNLIKELY(names == nullptr || access_flags == nullptr)) {
117 int32_t access_flags_count = access_flags.Get()->GetLength();
155 int32_t modifiers = access_flags.Get()->Get(parameter_index);
  /art/compiler/optimizing/
optimizing_compiler.cc 303 uint32_t access_flags,
311 CompiledMethod* JniCompile(uint32_t access_flags,
316 access_flags,
376 uint32_t access_flags,
1156 const uint32_t access_flags = method->GetAccessFlags(); local
    [all...]
  /external/tcpdump/
print-nfs.c 530 uint32_t access_flags; local
574 access_flags = EXTRACT_32BITS(&dp[0]);
575 if (access_flags & ~NFSV3ACCESS_FULL) {
577 ND_PRINT((ndo, " %04x", access_flags));
578 } else if ((access_flags & NFSV3ACCESS_FULL) == NFSV3ACCESS_FULL) {
582 if (access_flags & NFSV3ACCESS_READ) {
586 if (access_flags & NFSV3ACCESS_LOOKUP) {
590 if (access_flags & NFSV3ACCESS_MODIFY) {
594 if (access_flags & NFSV3ACCESS_EXTEND) {
598 if (access_flags & NFSV3ACCESS_DELETE)
    [all...]

Completed in 316 milliseconds

1 2 3