/external/libdrm/nouveau/ |
private.h | 87 uint32_t access; member in struct:nouveau_bo_priv
|
/external/parameter-framework/upstream/parameter/ |
ArrayParameter.cpp | 120 /// Actual parameter access 121 // String access 136 bool CArrayParameter::access(std::vector<bool> &abValues, bool bSet, function in class:CArrayParameter 143 bool CArrayParameter::access(std::vector<uint32_t> &auiValues, bool bSet, function in class:CArrayParameter 149 // Signed Integer Access 150 bool CArrayParameter::access(std::vector<int32_t> &aiValues, bool bSet, function in class:CArrayParameter 156 // Double Access 157 bool CArrayParameter::access(std::vector<double> &adValues, bool bSet, function in class:CArrayParameter 163 // String Access 164 bool CArrayParameter::access(std::vector<string> &astrValues, bool bSet function in class:CArrayParameter [all...] |
/external/proguard/src/proguard/ant/ |
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/selinux/sepolgen/src/sepolgen/ |
audit.py | 24 from . import access namespace 142 """AVC message representing an access denial or granted message. 152 access - list of accesses that were allowed or denied 184 # This is kind of sucky - the access that is in a space separated 266 raise ValueError("Error during access vector computation") 492 Access vector set representing the denied access in the 495 role_types = access.RoleTypeSet() 503 """Convert the audit logs access into a an access vector set [all...] |
policygen.py | 35 from . import access namespace 46 """Generate a reference policy module from access vectors. 49 or updates an existing module based on requested access 50 in the form of access vectors. 59 why a particular access was allowed based on the audit 60 messages that generated the access. The access vectors 72 If the module paramater is not None then access 116 """Set whether access is explained. 176 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...] |
interfaces.py | 27 from . import access namespace 45 if not access.is_idparam(name): 107 """Extract the paramaters from an access vector. 109 Extract the paramaters (in the form $N) from an access 144 if access.is_idparam(av.src_type): 148 if access.is_idparam(av.tgt_type): 152 if access.is_idparam(av.obj_class): 157 if access.is_idparam(perm): 164 if access.is_idparam(role.role): 171 if access.is_idparam(x) [all...] |
/external/v8/test/unittests/compiler/ |
js-type-feedback-unittest.cc | 7 #include "src/compiler/access-builder.h" 264 FieldAccess access = AccessBuilder::ForPropertyCellValue(); local 267 access, CaptureEq(&cell_capture), graph()->start(), graph()->start()); 316 FieldAccess access = AccessBuilder::ForPropertyCellValue(); local 319 access, CaptureEq(&cell_capture), graph()->start(), graph()->start());
|
/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...] |
/packages/services/Car/vehicle_network_service/ |
VehiclePropertyAccessControl.cpp | 66 // Converts the string representation, access, to an integer form and store it 67 // in value. true is returned if the parameter, access, is "r", "w", "rw" or 69 // only used for logging in the event that the string, access, was not 74 const xmlChar* access) { 75 if (!value || !property || !uid || !access) { 80 if (xmlStrcmp(access, (const xmlChar *)"r") == 0) { 83 else if (xmlStrcmp(access, (const xmlChar *)"w") == 0) { 86 else if ((xmlStrcmp(access, (const xmlChar *)"rw") == 0) 87 || (xmlStrcmp(access, (const xmlChar *)"wr") == 0)) { 91 ALOGE("Unknown access tag %s for UID %s in PROPERTY %s\n",access, uid 137 xmlChar* access = NULL; local 294 int32_t access; local 337 int32_t access = (*uidAccessMap)[uid]; local [all...] |
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
noembed.h | 100 #ifdef access 101 #undef access macro
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
audit.py | 24 from . import access namespace 142 """AVC message representing an access denial or granted message. 152 access - list of accesses that were allowed or denied 184 # This is kind of sucky - the access that is in a space separated 266 raise ValueError("Error during access vector computation") 492 Access vector set representing the denied access in the 495 role_types = access.RoleTypeSet() 503 """Convert the audit logs access into a an access vector set [all...] |
policygen.py | 35 from . import access namespace 46 """Generate a reference policy module from access vectors. 49 or updates an existing module based on requested access 50 in the form of access vectors. 59 why a particular access was allowed based on the audit 60 messages that generated the access. The access vectors 72 If the module paramater is not None then access 116 """Set whether access is explained. 176 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/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 56 * If a subroutine is passed, the access flags will be modified if this instruction accesses 424 access(index, Type.INTEGER, subroutine); method 786 access(index, type, subroutine); method 875 access(index, type, subroutine); method 980 private void access(int index, Type type, Subroutine subroutine) { method in class:Executor [all...] |
/external/deqp/framework/opengl/ |
gluTexture.cpp | 96 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); 179 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); 181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()) 366 tcu::ConstPixelBufferAccess access = m_refTexture.getLevelFace(levelNdx, (tcu::CubeFace)face); local 485 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 572 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 694 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 785 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local [all...] |
/external/deqp/modules/egl/ |
teglColorClearCase.cpp | 105 tcu::PixelBufferAccess access = tcu::getSubregion(dst.getAccess(), clearIter->x, clearIter->y, 0, clearIter->width, clearIter->height, 1); local 106 tcu::clear(access, pixelFormat.convertColor(clearIter->color).toIVec()); 423 tcu::PixelBufferAccess access = tcu::getSubregion(refFrame.getAccess(), local 426 tcu::clear(access, pixelFmt.convertColor(packet.clears[clearNdx].color).toIVec());
|
/external/deqp/modules/gles31/functional/ |
es31fSSBOArrayLengthTests.cpp | 55 SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized); 75 SSBOArrayLengthCase::SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized) 77 , m_access (access) 288 SSBOArrayLengthCase::ArrayAccess access; member in struct:deqp::gles31::Functional::Qualifier 306 this->addChild(new SSBOArrayLengthCase(m_context, name.c_str(), desc.c_str(), qualifiers[qualifierNdx].access, arraysSized[sizeNdx]));
|
/external/fio/engines/ |
windowsaio.c | 157 DWORD access; local 187 access = GENERIC_READ; 189 access = (GENERIC_READ | GENERIC_WRITE); 196 f->hFile = CreateFile(f->file_name, access, sharemode,
|
/external/icu/icu4c/source/common/unicode/ |
utext.h | 24 * The Text Access API provides a means to allow text that is stored in alternative 29 * ICU Text Access allows other formats, such as UTF-8 or non-contiguous 41 * access to the actual text. 79 * or UTF-32, for example. When coding to the UText access API, no assumptions 107 * Most UText access functions have as their first parameter a (UText *) pointer, 349 * This is true for read access only with shallow clones, and for both read and 350 * write access with deep clones. 360 * @param readOnly TRUE to request that the cloned UText have read only access to the 681 * #define inline versions of selected performance-critical text access functions 1257 UTextAccess *access; member in struct:UTextFuncs [all...] |
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
ClassHeaderReader.java | 25 private int access; field in class:ClassHeaderReader 38 return access; 57 access = 0; 109 access = readUnsignedShort(index);
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
SessionManager.java | 247 public HttpCookie access(HttpSession session, boolean secure); method in interface:SessionManager 254 * @see #access(HttpSession, boolean)
|
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
SessionHandler.java | 148 HttpSession access = null; local 162 // access any existing session 171 access = session; 172 HttpCookie cookie = _sessionManager.access(session,request.isSecure()); 203 if (access != null) 204 _sessionManager.complete(access); 207 if (session != null && old_session == null && session != access)
|
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_miptree.c | 235 unsigned access = 0; local 242 access |= NOUVEAU_BO_RD; 244 access |= NOUVEAU_BO_WR; 246 ret = nouveau_bo_map(tx->tmp.bo, access, nv30->base.client);
|
nv30_winsys.h | 44 struct nouveau_bo *bo, uint32_t access) 46 nouveau_bufctx_refn(bufctx(push), bin, bo, access); local 51 struct nouveau_bo *bo, uint32_t offset, uint32_t access) 54 bo, offset, access | NOUVEAU_BO_LOW, 0, 0)->priv = NULL; 60 struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor) 63 bo, 0, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL; 72 struct nouveau_bo *bo, uint32_t data, uint32_t access, 76 bo, data, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL; 85 struct nouveau_bo *bo, uint32_t data, uint32_t access, 90 bo, data, access | NOUVEAU_BO_OR, vor, tor) [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
ClassNode.java | 54 * The class's access flags (see {@link org.mockito.asm.Opcodes}). This
57 public int access;
field in class:ClassNode 155 final int access,
162 this.access = access;
190 final int access)
195 access);
200 final int access,
206 FieldNode fn = new FieldNode(access, name, desc, signature, value);
212 final int access,
[all...] |
/external/v8/src/compiler/ |
access-builder.cc | 5 #include "src/compiler/access-builder.h" 19 FieldAccess access = {kTaggedBase, HeapObject::kMapOffset, local 22 return access; 28 FieldAccess access = {kTaggedBase, HeapNumber::kValueOffset, local 31 return access; 37 FieldAccess access = {kTaggedBase, JSObject::kPropertiesOffset, local 40 return access; 46 FieldAccess access = {kTaggedBase, JSObject::kElementsOffset, local 49 return access; 57 FieldAccess access = {kTaggedBase, offset, MaybeHandle<Name>() local 65 FieldAccess access = {kTaggedBase, JSFunction::kContextOffset, local 74 FieldAccess access = {kTaggedBase, JSFunction::kSharedFunctionInfoOffset, local 83 FieldAccess access = {kTaggedBase, JSArray::kLengthOffset, Handle<Name>(), local 97 FieldAccess access = {kTaggedBase, JSArrayBuffer::kBackingStoreOffset, local 106 FieldAccess access = {kTaggedBase, JSArrayBuffer::kBitFieldOffset, local 115 FieldAccess access = {kTaggedBase, JSArrayBufferView::kBufferOffset, local 124 FieldAccess access = { local 133 FieldAccess access = {kTaggedBase, JSIteratorResult::kDoneOffset, local 142 FieldAccess access = {kTaggedBase, JSIteratorResult::kValueOffset, local 151 FieldAccess access = {kTaggedBase, JSRegExp::kFlagsOffset, local 160 FieldAccess access = {kTaggedBase, JSRegExp::kSourceOffset, local 169 FieldAccess access = { local 178 FieldAccess access = {kTaggedBase, DescriptorArray::kEnumCacheOffset, local 187 FieldAccess access = { local 196 FieldAccess access = {kTaggedBase, Map::kBitFieldOffset, Handle<Name>(), local 204 FieldAccess access = {kTaggedBase, Map::kBitField3Offset, Handle<Name>(), local 212 FieldAccess access = {kTaggedBase, Map::kDescriptorsOffset, Handle<Name>(), local 220 FieldAccess access = {kTaggedBase, Map::kInstanceTypeOffset, Handle<Name>(), local 228 FieldAccess access = {kTaggedBase, Map::kPrototypeOffset, Handle<Name>(), local 236 FieldAccess access = {kTaggedBase, String::kLengthOffset, Handle<Name>(), local 245 FieldAccess access = {kTaggedBase, JSGlobalObject::kGlobalProxyOffset, local 254 FieldAccess access = {kTaggedBase, JSGlobalObject::kNativeContextOffset, local 263 FieldAccess access = {kTaggedBase, JSValue::kValueOffset, Handle<Name>(), local 273 FieldAccess access = {kTaggedBase, offset, Handle<Name>(), Type::Any(), local 283 FieldAccess access = {kTaggedBase, offset, Handle<Name>(), Type::Any(), local 292 FieldAccess access = {kTaggedBase, offset, Handle<Name>(), Type::Any(), local 303 FieldAccess access = {kTaggedBase, offset, Handle<Name>(), Type::Any(), local 317 FieldAccess access = {kTaggedBase, PropertyCell::kValueOffset, Handle<Name>(), local 325 FieldAccess access = {kTaggedBase, SharedFunctionInfo::kFeedbackVectorOffset, local 333 ElementAccess access = {kTaggedBase, FixedArray::kHeaderSize, Type::Tagged(), local 341 ElementAccess access = {kTaggedBase, FixedDoubleArray::kHeaderSize, local 354 ElementAccess access = {taggedness, header_size, Type::Signed32(), local 360 ElementAccess access = {taggedness, header_size, Type::Unsigned32(), local 365 ElementAccess access = {taggedness, header_size, Type::Signed32(), local 370 ElementAccess access = {taggedness, header_size, Type::Unsigned32(), local 375 ElementAccess access = {taggedness, header_size, Type::Signed32(), local 380 ElementAccess access = {taggedness, header_size, Type::Unsigned32(), local 385 ElementAccess access = {taggedness, header_size, Type::Number(), local 390 ElementAccess access = {taggedness, header_size, Type::Number(), local 396 ElementAccess access = {kUntaggedBase, 0, Type::None(), MachineType::None()}; local 403 FieldAccess access = {kUntaggedBase, 0, MaybeHandle<Name>(), local [all...] |