HomeSort by relevance Sort by last modified time
    Searched refs:access (Results 101 - 125 of 2965) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierClassVisitor.class 
GASMifierClassVisitor.java 89 final int access,
95 super.visit(version, access, name, signature, superName, interfaces);
108 final int access,
117 buf.append(access);
139 GASMifierMethodVisitor acv = new GASMifierMethodVisitor(access, desc);
142 return new LocalVariablesSorter(access, desc, acv);
  /external/googletest/googletest/include/gtest/internal/custom/
gtest.h 50 if (access("/data/local/tmp", R_OK | W_OK | X_OK) == 0) return "/data/local/tmp/";
  /external/libchrome/base/files/
memory_mapped_file.h 26 enum Access {
33 // This provides read/write access to a file and must be used with care of
40 // This provides read/write access but with the ability to write beyond
67 // Opens an existing file and maps it into memory. |access| can be read-only
72 bool Initialize(const FilePath& file_name, Access access);
77 // As above, but works with an already-opened file. |access| can be read-only
80 // permissions suitable for |access|. If the memory mapping fails, it will
82 bool Initialize(File file, Access access);
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_surface.h 53 enum ilo_state_surface_access access; member in struct:ilo_state_surface_buffer_info
73 enum ilo_state_surface_access access; member in struct:ilo_state_surface_image_info
101 enum ilo_state_surface_access access,
106 enum ilo_state_surface_access access,
  /external/parameter-framework/upstream/parameter/
Parameter.h 54 // Boolean access
55 bool access(bool &bValue, bool bSet,
58 // Integer Access
59 bool access(uint32_t &uiValue, bool bSet,
62 // Signed Integer Access
63 bool access(int32_t &iValue, bool bSet,
66 // Double Access
67 bool access(double &dValue, bool bSet,
74 // Actual value access
88 // Generic Access
    [all...]
ArrayParameter.h 42 /// Value access
43 using CBaseParameter::access;
44 bool access(std::vector<bool> &abValues, bool bSet,
46 bool access(std::vector<uint32_t> &auiValues, bool bSet,
48 bool access(std::vector<int32_t> &aiValues, bool bSet,
50 bool access(std::vector<double> &adValues, bool bSet,
52 bool access(std::vector<std::string> &astrValues, bool bSet,
78 /** Access whole array.
89 /// Value access
90 // Generic Access
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
access.py 21 Classes representing basic access.
23 SELinux - at the most basic level - represents access as
26 access to faciliate more concise rules (e.g., allow rules can have multiple
29 This module has objects for representing the most basic access (AccessVector)
30 and sets of that access (AccessVectorSet). These objects are used in Madison
31 in a variety of ways, but they are the fundamental representation of access.
58 An access vector is the basic unit of access in SELinux.
60 Access vectors are the most basic representation of access withi
    [all...]
  /external/strace/
access.c 17 SYS_FUNC(access)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
access.py 21 Classes representing basic access.
23 SELinux - at the most basic level - represents access as
26 access to faciliate more concise rules (e.g., allow rules can have multiple
29 This module has objects for representing the most basic access (AccessVector)
30 and sets of that access (AccessVectorSet). These objects are used in Madison
31 in a variety of ways, but they are the fundamental representation of access.
58 An access vector is the basic unit of access in SELinux.
60 Access vectors are the most basic representation of access withi
    [all...]
  /system/extras/tests/kernel.config/
sysvipc_test.cpp 44 EXPECT_EQ(-1, access("/proc/sysvipc", R_OK));
46 EXPECT_EQ(-1, access("/proc/sysvipc/msg", F_OK));
50 EXPECT_EQ(-1, access("/proc/sysvipc/sem", F_OK));
54 EXPECT_EQ(-1, access("/proc/sysvipc/shm", F_OK));
  /art/compiler/optimizing/
instruction_simplifier_mips.cc 39 bool TryExtractArrayAccessIndex(HInstruction* access,
49 bool InstructionSimplifierMipsVisitor::TryExtractArrayAccessIndex(HInstruction* access,
70 if (access->IsArrayGet() && access->AsArrayGet()->IsStringCharAt()) {
74 HGraph* graph = access->GetBlock()->GetGraph();
82 if (user->IsArrayGet() && user != access && !user->AsArrayGet()->IsStringCharAt()) {
90 } else if (user->IsArraySet() && user != access) {
115 access->GetBlock()->InsertInstructionBefore(address, access);
116 access->ReplaceInput(address, 1)
    [all...]
instruction_simplifier_shared.cc 232 bool TryExtractArrayAccessAddress(HInstruction* access,
239 // memory access instruction, so do not split the access.
242 if (access->IsArraySet() &&
243 access->AsArraySet()->GetValue()->GetType() == DataType::Type::kReference) {
244 // The access may require a runtime call or the original array pointer.
248 access->IsArrayGet() &&
249 access->GetType() == DataType::Type::kReference) {
257 HGraph* graph = access->GetBlock()->GetGraph();
264 access->GetBlock()->InsertInstructionBefore(address, access)
    [all...]
  /external/turbine/java/com/google/turbine/parse/
Parser.java 88 EnumSet<TurbineModifier> access = EnumSet.noneOf(TurbineModifier.class); local
113 access.add(PUBLIC);
117 access.add(PROTECTED);
121 access.add(TurbineModifier.PRIVATE);
125 access.add(TurbineModifier.STATIC);
129 access.add(TurbineModifier.ABSTRACT);
133 access.add(TurbineModifier.FINAL);
137 access.add(TurbineModifier.STRICTFP);
143 decls.add(annotationDeclaration(access, annos.build()));
144 access = EnumSet.noneOf(TurbineModifier.class)
353 EnumSet<TurbineModifier> access = EnumSet.noneOf(TurbineModifier.class); local
782 EnumSet<TurbineModifier> access = modifiersAndAnnotations(annos); local
1037 EnumSet<TurbineModifier> access = EnumSet.noneOf(TurbineModifier.class); local
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
FieldNode.java 54 * The field's access flags (see {@link org.objectweb.asm.Opcodes}). This
57 public int access; field in class:FieldNode
84 * @param access the field's access flags (see
96 final int access,
102 this.access = access;
115 FieldVisitor fv = cv.visitField(access, name, desc, signature, value);
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
ClassHasNativeVisitor.java 49 public void visit(int version, int access, String name, String signature,
71 public FieldVisitor visitField(int access, String name, String desc,
79 String innerName, int access) {
84 public MethodVisitor visitMethod(int access, String name, String desc,
86 if ((access & Opcodes.ACC_NATIVE) != 0) {
  /external/desugar/java/com/google/devtools/build/android/desugar/
DefaultMethodClassFixer.java 72 int access,
78 isInterface = BitFlags.isSet(access, Opcodes.ACC_INTERFACE);
86 super.visit(version, access, name, signature, superName, interfaces);
97 // method call will return a list of interface fields to access in the <clinit> to trigger
180 int access, String name, String desc, String signature, String[] exceptions) {
183 recordIfInstanceMethod(access, name, desc);
187 clInitMethodNode = new MethodNode(access, name, desc, signature, exceptions);
190 return super.visitMethod(access, name, desc, signature, exceptions);
253 private void recordIfInstanceMethod(int access, String name, String desc) {
254 if (BitFlags.noneSet(access, Opcodes.ACC_STATIC))
    [all...]
  /system/netd/tests/
bpf_base_test.cpp 63 ASSERT_EQ(0, access(CGROUP_ROOT_PATH, R_OK));
64 ASSERT_EQ(0, access("/dev/cg2_bpf/cgroup.controllers", R_OK));
70 ASSERT_EQ(0, access(BPF_EGRESS_PROG_PATH, R_OK));
71 ASSERT_EQ(0, access(BPF_INGRESS_PROG_PATH, R_OK));
72 ASSERT_EQ(0, access(XT_BPF_INGRESS_PROG_PATH, R_OK));
73 ASSERT_EQ(0, access(XT_BPF_EGRESS_PROG_PATH, R_OK));
74 ASSERT_EQ(0, access(COOKIE_TAG_MAP_PATH, R_OK));
75 ASSERT_EQ(0, access(UID_COUNTERSET_MAP_PATH, R_OK));
76 ASSERT_EQ(0, access(UID_STATS_MAP_PATH, R_OK));
77 ASSERT_EQ(0, access(TAG_STATS_MAP_PATH, R_OK))
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 221 // It is never allowed to access combined depth-stencil format with getPixel().
223 // access must be used.
232 // A few packed color formats have access type restrictions
242 * \brief Get access to subregion of pixel buffer
243 * \param access Parent access object
250 * \return Access object that targets given subregion of parent access object
252 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int z, int width, int height, int depth)
254 DE_ASSERT(de::inBounds(x, 0, access.getWidth()))
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 33 /** Access mode None: Frame data will not be accessed at all. */
35 /** Access mode Bytes: Frame data will be accessed as a ByteBuffer. */
37 /** Access mode Texture: Frame data will be accessed as a TextureSource. */
39 /** Access mode RenderTarget: Frame data will be accessed as a RenderTarget. */
41 /** Access mode Object: Frame data will be accessed as a generic Object. */
43 /** Access mode Bitmap: Frame data will be accessed as a Bitmap. */
45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */
88 public Backing lockBacking(int mode, int access) {
89 Backing backing = fetchBacking(mode, access);
186 private Backing fetchBacking(int mode, int access) {
276 int access = backing.requiresGpu() ? ACCESS_BYTES : backing.readAccess(); local
508 int access = backing.readAccess(); local
603 int access = backing.readAccess(); local
724 int access = backing.readAccess(); local
843 int access = backing.readAccess(); local
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
x86_operand_list.c 81 * allow an "all" limited by access type, even though the
107 if (! (list->op.access & op_write) ) {
112 if (! (list->op.access & op_read) ) {
117 if (! (list->op.access & op_read) ||
118 (list->op.access & op_write ) ) {
123 if (! (list->op.access & op_write) ||
124 (list->op.access & op_read ) ) {
129 if (! (list->op.access & op_execute) ) {
134 if (! (list->op.access & op_write) ||
135 ! (list->op.access & op_read ) )
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
FieldWriter.java 50 * Access flags of this field.
52 private int access; field in class:FieldWriter
106 * @param access the field's access flags (see {@link Opcodes}).
114 final int access,
127 this.access = access;
203 if ((access & Opcodes.ACC_SYNTHETIC) != 0
209 if ((access & Opcodes.ACC_DEPRECATED) != 0) {
213 if (cw.version == Opcodes.V1_4 && (access & Opcodes.ACC_ENUM) != 0)
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
AnnotationVerifier$ClassRecorder.class 
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/
ASMPerfTest.java 88 int access,
94 super.visit(version, access, name, signature, superName, interfaces);
95 if ((access & ACC_INTERFACE) == 0) {
102 int access,
108 MethodVisitor mv = super.visitMethod(access,
114 && (access & (ACC_STATIC | ACC_NATIVE | ACC_ABSTRACT)) == 0)
  /external/selinux/libselinux/src/android/
android.c 73 if (access(seopts_service_plat[i].value, R_OK) != -1) {
79 if (access(seopts_service_vendor[i].value, R_OK) != -1) {
94 if (access(seopts_hwservice_plat[i].value, R_OK) != -1) {
100 if (access(seopts_hwservice_vendor[i].value, R_OK) != -1) {
106 if (access(seopts_hwservice_odm[i].value, R_OK) != -1) {
117 if (access(seopts_vndservice.value, R_OK) != -1) {

Completed in 397 milliseconds

1 2 3 45 6 7 8 91011>>