/libcore/support/src/test/java/tests/resources/ |
hyts_signed_validChain.jar | |
/external/selinux/sepolgen/src/sepolgen/ |
matching.py | 21 Classes and algorithms for matching requested access to access vectors. 24 import access namespace 105 # to be a strong penalty - stronger than access to 110 if a == b or access.is_idparam(b): 128 """Determine the 'distance' between 2 access vectors. 130 This function is used to find an access vector that matches 131 a 'required' access. To do this we comput a signed numeric 132 value that indicates how close the req access is to the 133 'provided' access vector. The closer the value is to [all...] |
audit.py | 21 import access namespace 135 """AVC message representing an access denial or granted message. 145 access - list of accesses that were allowed or denied 177 # This is kind of sucky - the access that is in a space separated 259 raise ValueError("Error during access vector computation") 485 Access vector set representing the denied access in the 488 role_types = access.RoleTypeSet() 496 """Convert the audit logs access into a an access vector set [all...] |
policygen.py | 29 import access namespace 45 """Generate a reference policy module from access vectors. 48 or updates an existing module based on requested access 49 in the form of access vectors. 58 why a particular access was allowed based on the audit 59 messages that generated the access. The access vectors 71 If the module paramater is not None then access 115 """Set whether access is explained. 175 rule.comment += "\n#!!!! This avc is a constraint violation. You would need to modify the attributes of either the source or target types to allow this access. [all...] |
/external/selinux/sepolgen/tests/ |
test_access.py | 24 import sepolgen.access as access namespace 29 a = access.AccessVector() 38 a = access.AccessVector() 44 l = access.AccessVector(['foo', 'bar', 'file', 'read', 'write']) 51 a = access.AccessVector() 57 l = access.AccessVector() 65 a = access.AccessVector() 79 a = access.AccessVector() 89 a = access.AccessVector( [all...] |
/external/skia/src/gpu/gl/ |
GrGLProgramDesc.cpp | 47 const GrTextureAccess& access = proc.textureAccess(t); local 48 uint32_t configComponentMask = GrPixelConfigComponentMask(access.getTexture()->config()); 49 if (swizzle_requires_alpha_remapping(caps, configComponentMask, access.swizzleMask())) {
|
/external/v8/src/compiler/ |
simplified-operator-unittest.cc | 15 inline std::ostream& operator<<(std::ostream& os, const ElementAccess& access) { 17 ost << access; local 125 // Element access operators. 178 const ElementAccess& access = GetParam(); local 179 const Operator* op = simplified.LoadElement(access); 183 EXPECT_EQ(access, ElementAccessOf(op)); 198 const ElementAccess& access = GetParam(); local 199 const Operator* op = simplified.StoreElement(access); 203 EXPECT_EQ(access, ElementAccessOf(op));
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
matching.py | 21 Classes and algorithms for matching requested access to access vectors. 24 import access namespace 105 # to be a strong penalty - stronger than access to 110 if a == b or access.is_idparam(b): 128 """Determine the 'distance' between 2 access vectors. 130 This function is used to find an access vector that matches 131 a 'required' access. To do this we comput a signed numeric 132 value that indicates how close the req access is to the 133 'provided' access vector. The closer the value is to [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/ |
matching.py | 21 Classes and algorithms for matching requested access to access vectors. 24 import access namespace 105 # to be a strong penalty - stronger than access to 110 if a == b or access.is_idparam(b): 128 """Determine the 'distance' between 2 access vectors. 130 This function is used to find an access vector that matches 131 a 'required' access. To do this we comput a signed numeric 132 value that indicates how close the req access is to the 133 'provided' access vector. The closer the value is to [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
TestRemoteCall.java | 98 store.exposeObject("access", new ServerAccessImpl()); 113 ServerAccess access = store.getExposedObject("access", ServerAccess.class, true); local 114 boolean result = access.attachChild("Models/Oto/Oto.mesh.xml");
|
/external/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 119 unsigned access = MO.getTargetFlags() & PPCII::MO_ACCESS_MASK; local 121 switch (access) { 161 switch (access) {
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
FieldWriter.java | 50 * Access flags of this field.
52 private final int access;
field in class:FieldWriter 101 * @param access the field's access flags (see {@link Opcodes}).
109 final int access,
122 this.access = access;
181 if ((access & Opcodes.ACC_SYNTHETIC) != 0
187 if ((access & Opcodes.ACC_DEPRECATED) != 0) {
215 out.putShort(access).putShort(name).putShort(desc); [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
FieldNode.java | 44 * The field's access flags (see {@link org.mockito.asm.Opcodes}). This
47 public int access;
field in class:FieldNode 74 * @param access the field's access flags (see
87 final int access,
93 this.access = access;
106 FieldVisitor fv = cv.visitField(access, name, desc, signature, value);
|
MethodNode.java | 52 * The method's access flags (see {@link Opcodes}). This field also
55 public int access;
field in class:MethodNode 152 * @param access the method's access flags (see {@link Opcodes}). This
163 final int access,
170 this.access = access;
177 boolean isAbstract = (access & Opcodes.ACC_ABSTRACT) != 0;
406 MethodVisitor mv = cv.visitMethod(access,
|
/external/proguard/src/proguard/ant/ |
MemberSpecificationElement.java | 39 private String access; field in class:MemberSpecificationElement 67 String access = memberSpecificationElement.access; local 116 new MemberSpecification(requiredAccessFlags(true, access), 117 requiredAccessFlags(false, access), 129 public void setAccess(String access) 131 this.access = access; 171 String access) 176 if (access != null [all...] |
ClassSpecificationElement.java | 40 private String access; field in class:ClassSpecificationElement 76 String access = classSpecificationElement.access; local 93 requiredAccessFlags(true, access, type), 94 requiredAccessFlags(false, access, type), 116 public void setAccess(String access) 118 this.access = access; 202 String access, 208 if (access != null [all...] |
/external/skia/src/gpu/gl/debug/ |
GrBufferObj.h | 32 void access() { function in class:GrBufferObj 33 // cannot access the buffer if it is currently mapped
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Field.java | 308 String access = ""; local 310 access += JDWPConstants.FieldAccess 314 access += JDWPConstants.FieldAccess 318 access += JDWPConstants.FieldAccess 323 access += JDWPConstants.FieldAccess 328 access += JDWPConstants.FieldAccess 333 access += JDWPConstants.FieldAccess 338 access += JDWPConstants.FieldAccess 343 return str + access;
|
/external/clang/test/CodeGenCXX/ |
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp | 453 namespace access { namespace 466 // MANGLING-DAG: @"\01?prot@B@access@@$2PPPPPPPM@A@AEXXZ" 469 // MANGLING-DAG: @"\01?priv@B@access@@$0PPPPPPPM@A@AEXXZ" 477 // MANGLING-DAG: @"\01?prot@B@access@@$R277PPPPPPPM@7AEXXZ" 478 // MANGLING-DAG: @"\01?priv@B@access@@$R077PPPPPPPM@7AEXXZ"
|
/external/deqp/framework/delibs/deutil/ |
deFile.c | 70 /* Read, write or read and write access is required. */ 242 DWORD access = 0; local 246 /* Read, write or read and write access is required. */ 260 access |= GENERIC_READ; 263 access |= GENERIC_WRITE; 286 handle = CreateFile(filename, access, FILE_SHARE_DELETE|FILE_SHARE_READ|FILE_SHARE_WRITE, DE_NULL, create, FILE_ATTRIBUTE_NORMAL, DE_NULL);
|
/external/deqp/modules/glshared/ |
glsRandomShaderProgram.cpp | 186 rsg::ExecValueAccess access = m_execCtx.getValue(attribVar); local 196 access.component(0).asFloat(ndx) = attribValue[0]; 197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1]; 198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2]; 199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3]; 207 const rsg::ExecConstValueAccess access = m_execCtx.getValue(m_positionVar); local 214 packet->position[0] = access.component(0).asFloat(ndx); 215 packet->position[1] = access.component(1).asFloat(ndx); 216 packet->position[2] = access.component(2).asFloat(ndx); 217 packet->position[3] = access.component(3).asFloat(ndx) 227 const rsg::ExecConstValueAccess access = m_execCtx.getValue(var); local 265 rsg::ExecValueAccess access = m_execCtx.getValue(var); local [all...] |
/external/libdrm/nouveau/ |
private.h | 87 uint32_t access; member in struct:nouveau_bo_priv
|
/external/v8/test/cctest/compiler/ |
test-js-context-specialization.cc | 97 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local 98 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, access.index()); 99 CHECK_EQ(0, access.depth()); 100 CHECK_EQ(false, access.immutable()); 177 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local 178 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, access.index()); 179 CHECK_EQ(0, access.depth()); 180 CHECK_EQ(false, access.immutable());
|
/external/zlib/src/examples/ |
zran.c | 1 /* zran.c -- example of zlib/gzip stream indexing and random access 12 for random access of a compressed file. A file containing a zlib or gzip 14 its entirety, and an index built with access points about every SPAN bytes 19 An access point can be created at the start of any deflate block, by saving 26 a new access point. If so, that point is saved in a data structure that 39 requests for random access reads from the compressed data would try to use 44 access, mainly copying the 32K byte dictionary. So if small pieces of the 49 not be constrained to have access points at block boundaries, but requires 50 more memory per access point, and also cannot be saved to file due to the 62 #define SPAN 1048576L /* desired distance between access points * 75 struct access { struct [all...] |
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
noembed.h | 100 #ifdef access 101 #undef access macro
|