Home
last modified time | relevance | path

Searched refs:access (Results 1 – 25 of 4067) sorted by relevance

12345678910>>...163

/external/OpenCSD/decoder/tests/snapshots/juno_r1_1/ds-5-dumps/
DTrace_Report_0x11_cpu_1_2015Sep17_104748.txt4 EL1N:0xFFFFFFC000781E8C ? Cannot access target memory
7 EL1N:0xFFFFFFC000781E8C ? Cannot access target memory
8 EL1N:0xFFFFFFC000781E8C ? Cannot access target memory
9 EL1N:0xFFFFFFC0000F3698 ? Cannot access target memory
11 EL1N:0xFFFFFFC0000F408C ? Cannot access target memory
59 EL1N:0xFFFFFFC0001124D8 ? Cannot access target memory
62 EL1N:? ? Cannot access target memory
63 EL1N:? ? Cannot access target memory
64 EL1N:? ? Cannot access target memory
65 EL1N:? ? Cannot access target memory
[all …]
DTrace_Report_0x13_cpu_3_2015Sep17_104147.txt8 EL1N:0xFFFFFFC000594AC0 ? Cannot access target memory
9 EL1N:0xFFFFFFC000592B58 ? Cannot access target memory
11 EL1N:? ? Cannot access target memory
12 EL1N:? ? Cannot access target memory
13 EL1N:0xFFFFFFC0005AC4C8 ? Cannot access target memory
15 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
16 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
17 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
66 EL1N:0xFFFFFFC000117CF0 ? Cannot access target memory
67 EL1N:0xFFFFFFC000117CF0 ? Cannot access target memory
[all …]
DTrace_Report_0x10_cpu_0_2015Sep17_104900.txt8 EL1N:0xFFFFFFC000594AC0 ? Cannot access target memory
9 EL1N:0xFFFFFFC000592B58 ? Cannot access target memory
11 EL1N:? ? Cannot access target memory
12 EL1N:? ? Cannot access target memory
13 EL1N:0xFFFFFFC0005AC4C8 ? Cannot access target memory
15 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
16 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
17 EL1N:0xFFFFFFC0000EA588 ? Cannot access target memory
66 EL1N:0xFFFFFFC000117CF0 ? Cannot access target memory
67 EL1N:0xFFFFFFC000117CF0 ? Cannot access target memory
[all …]
DTrace_Report_0x15_cpu_5_2015Sep17_105126.txt3 EL1N:0xFFFFFFC0000F3CC0 ? Cannot access target memory
5 EL1N:? ? Cannot access target memory
6 EL1N:? ? Cannot access target memory
7 EL1N:? ? Cannot access target memory
8 EL1N:? ? Cannot access target memory
9 EL1N:? ? Cannot access target memory
10 EL1N:? ? Cannot access target memory
11 EL1N:? ? Cannot access target memory
17 EL1N:0xFFFFFFC0000F9494 ? Cannot access target memory
18 EL1N:0xFFFFFFC0000F9494 ? Cannot access target memory
[all …]
/external/libchrome/components/policy/core/common/
Dpolicy_proto_decoders.cc119 for (const BooleanPolicyAccess* access = &kBooleanPolicyAccess[0]; in DecodeProtoFields() local
120 access->policy_key; access++) { in DecodeProtoFields()
121 if (!(policy.*access->has_proto)()) in DecodeProtoFields()
124 const em::BooleanPolicyProto& proto = (policy.*access->get_proto)(); in DecodeProtoFields()
128 map->Set(access->policy_key, level, scope, source, in DecodeProtoFields()
132 for (const IntegerPolicyAccess* access = &kIntegerPolicyAccess[0]; in DecodeProtoFields() local
133 access->policy_key; access++) { in DecodeProtoFields()
134 if (!(policy.*access->has_proto)()) in DecodeProtoFields()
137 const em::IntegerPolicyProto& proto = (policy.*access->get_proto)(); in DecodeProtoFields()
142 map->Set(access->policy_key, level, scope, source, in DecodeProtoFields()
[all …]
/external/clang/test/SemaObjC/
Divar-access-tests.m18 int access;
20 access = s->private;
21 access = s->protected;
31 int access;
33 access = s->private; // expected-error {{instance variable 'private' is private}}
34 access = s->protected;
36 access = m->private; // expected-error {{instance variable 'private' is private}}
37 access = m->protected;
47 int access;
49 access = s->private; // expected-error {{instance variable 'private' is private}}
[all …]
/external/deqp/framework/common/
DtcuTextureUtil.cpp260 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int z, int… in getSubregion() argument
262 DE_ASSERT(de::inBounds(x, 0, access.getWidth())); in getSubregion()
263 DE_ASSERT(de::inRange(x+width, x+1, access.getWidth())); in getSubregion()
265 DE_ASSERT(de::inBounds(y, 0, access.getHeight())); in getSubregion()
266 DE_ASSERT(de::inRange(y+height, y+1, access.getHeight())); in getSubregion()
268 DE_ASSERT(de::inBounds(z, 0, access.getDepth())); in getSubregion()
269 DE_ASSERT(de::inRange(z+depth, z+1, access.getDepth())); in getSubregion()
271 …return ConstPixelBufferAccess(access.getFormat(), tcu::IVec3(width, height, depth), access.getPitc… in getSubregion()
272 …(const deUint8*)access.getDataPtr() + access.getPixelPitch()*x + access.getRowPitch()*y + access.g… in getSubregion()
286 PixelBufferAccess getSubregion (const PixelBufferAccess& access, int x, int y, int z, int width, in… in getSubregion() argument
[all …]
DtcuTextureUtil.hpp33 PixelBufferAccess getSubregion (const PixelBufferAccess& access, int x, int y, int z, int width…
34 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int z, …
36 PixelBufferAccess getSubregion (const PixelBufferAccess& access, int x, int y, int width, int h…
37 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int wid…
39 PixelBufferAccess flipYAccess (const PixelBufferAccess& access);
40 ConstPixelBufferAccess flipYAccess (const ConstPixelBufferAccess& access);
115 void clear (const PixelBufferAccess& access, const Vec4& color);
116 void clear (const PixelBufferAccess& access, const IVec4& color);
117 void clear (const PixelBufferAccess& access, const UVec4& color);
118 void clearDepth (const PixelBufferAccess& access, float depth);
[all …]
/external/selinux/python/sepolgen/tests/
Dtest_access.py24 import sepolgen.access as access namespace
29 a = access.AccessVector()
39 a = access.AccessVector()
45 l = access.AccessVector(['foo', 'bar', 'file', 'read', 'write'])
52 a = access.AccessVector()
58 l = access.AccessVector()
65 l2 = access.AccessVector()
70 a = access.AccessVector()
86 a = access.AccessVector()
109 a = access.AccessVector()
[all …]
/external/python/cpython2/Misc/
Ddevelopers.txt6 The purpose is to provide some institutional memory of who was given access
12 project admin who made the change or granted access. Feel free to revise
26 - David Malcolm was given commit access on Oct 27 2010 by GFB,
29 - Tal Einat was given commit access on Oct 4 2010 by MvL,
32 - Łukasz Langa was given commit access on Sep 08 2010 by GFB,
35 - Daniel Stutzbach was given commit access on Aug 22 2010 by MvL,
38 - Ask Solem was given commit access on Aug 17 2010 by MvL,
42 - George Boutsioukis was given commit access on Aug 10 2010
45 - Éric Araujo was given commit access on Aug 10 2010 by BAC,
48 - Terry Reedy was given commit access on Aug 04 2010 by MvL,
[all …]
/external/capstone/arch/AArch64/
DAArch64InstPrinter.c71 uint8_t access; in set_mem_access() local
72 access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx); in set_mem_access()
73 MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].access = access; in set_mem_access()
140 uint8_t access; in AArch64_printInst() local
141 access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx); in AArch64_printInst()
142 MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].access = access; in AArch64_printInst()
149 access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx); in AArch64_printInst()
150 MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].access = access; in AArch64_printInst()
205 uint8_t access; in AArch64_printInst() local
206 access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx); in AArch64_printInst()
[all …]
/external/turbine/java/com/google/turbine/binder/bound/
DTypeBoundClass.java107 private final int access; field in TypeBoundClass.FieldInfo
116 int access, in FieldInfo() argument
122 this.access = access; in FieldInfo()
144 public int access() { in access() method in TypeBoundClass.FieldInfo
145 return access; in access()
171 private final int access; field in TypeBoundClass.MethodInfo
183 int access, in MethodInfo() argument
193 this.access = access; in MethodInfo()
231 public int access() { in access() method in TypeBoundClass.MethodInfo
232 return access; in access()
[all …]
/external/turbine/java/com/google/turbine/parse/
DParser.java102 EnumSet<TurbineModifier> access = EnumSet.noneOf(TurbineModifier.class); in compilationUnit() local
127 access.add(PUBLIC); in compilationUnit()
131 access.add(PROTECTED); in compilationUnit()
135 access.add(TurbineModifier.PRIVATE); in compilationUnit()
139 access.add(TurbineModifier.STATIC); in compilationUnit()
143 access.add(TurbineModifier.ABSTRACT); in compilationUnit()
147 access.add(TurbineModifier.FINAL); in compilationUnit()
151 access.add(TurbineModifier.STRICTFP); in compilationUnit()
158 decls.add(annotationDeclaration(access, annos.build())); in compilationUnit()
159 access = EnumSet.noneOf(TurbineModifier.class); in compilationUnit()
[all …]
/external/turbine/java/com/google/turbine/binder/
DCompUnitPreprocessor.java118 int access = access(decl.mods(), decl.tykind()); in preprocess() local
120 preprocessChildren(unit.source(), types, sym, decl.members(), access); in preprocess()
121 types.add(new SourceBoundClass(sym, null, children, access, decl)); in preprocess()
145 int access = innerClassAccess(enclosing, decl); in preprocessChildren() local
148 preprocessChildren(source, types, sym, decl.members(), access); in preprocessChildren()
149 types.add(new SourceBoundClass(sym, owner, children, access, decl)); in preprocessChildren()
156 public static int access(ImmutableSet<TurbineModifier> mods, TurbineTyKind tykind) { in access() method in CompUnitPreprocessor
157 int access = 0; in access() local
159 access |= m.flag(); in access()
163 access |= TurbineFlag.ACC_SUPER; in access()
[all …]
/external/capstone/suite/cstest/
Dissues.cs11 0x0: 0x70,0x47,0x00 == bx lr ; op_count: 1 ; operands[0].type: REG = lr ; operands[0].access: READ …
15 …rands[0].mem.index: REG = r1 ; operands[0].mem.lshift: 0x1 ; operands[0].access: READ ; Shift: 2 =…
19 …rip ; operands[0].mem.disp: 0x2175a1 ; operands[0].size: 4 ; operands[0].access: READ ; operands[1…
23 …G = rsp ; operands[0].mem.disp: 0x5e ; operands[0].size: 1 ; operands[0].access: WRITE ; Registers…
27 …G = rsp ; operands[0].mem.disp: 0x1f ; operands[0].size: 1 ; operands[0].access: WRITE ; Registers…
31 … = rsp ; operands[0].mem.disp: 0x40 ; operands[0].size: 10 ; operands[0].access: WRITE ; Registers…
35 …: 1 ; operands[0].type: REG = st(1) ; operands[0].size: 10 ; operands[0].access: WRITE ; Registers…
39 …G = rsp ; operands[0].mem.disp: 0x68 ; operands[0].size: 8 ; operands[0].access: WRITE ; Registers…
75 …operands[0].size: 2 ; operands[0].access: WRITE ; operands[1].type: REG = ax ; operands[1].size: 2…
87 …xe4 == pop {r1} ; op_count: 1 ; operands[0].type: REG = r1 ; operands[0].access: WRITE ; Write-bac…
[all …]
/external/libabigail/tests/data/test-diff-filter/
Dtest-PR27569-v1.abi41 <data-member access="public" layout-offset-in-bits="0">
44 <data-member access="public" layout-offset-in-bits="64">
47 <data-member access="public" layout-offset-in-bits="448">
50 <data-member access="public" layout-offset-in-bits="480">
53 <data-member access="public" layout-offset-in-bits="512">
56 <data-member access="public" layout-offset-in-bits="576">
61 <data-member access="public" layout-offset-in-bits="0">
64 <data-member access="public" layout-offset-in-bits="32">
67 <data-member access="public" layout-offset-in-bits="64">
70 <data-member access="public" layout-offset-in-bits="96">
[all …]
Dtest-PR27569-v0.abi41 <data-member access="public" layout-offset-in-bits="0">
44 <data-member access="public" layout-offset-in-bits="64">
47 <data-member access="public" layout-offset-in-bits="448">
50 <data-member access="public" layout-offset-in-bits="480">
53 <data-member access="public" layout-offset-in-bits="512">
56 <data-member access="public" layout-offset-in-bits="576">
61 <data-member access="public" layout-offset-in-bits="0">
64 <data-member access="public" layout-offset-in-bits="32">
67 <data-member access="public" layout-offset-in-bits="64">
70 <data-member access="public" layout-offset-in-bits="96">
[all …]
/external/deqp/framework/opengl/
DgluTexture.cpp96 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); in upload() local
97 …TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transfer… in upload()
179 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); in upload() local
180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload()
181 …, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format… in upload()
312 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); in upload() local
313 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload()
314 …_TEXTURE_2D, levelNdx, 0, 0, access.getWidth(), access.getHeight(), transferFormat.format, transf… in upload()
400 tcu::ConstPixelBufferAccess access = m_refTexture.getLevelFace(levelNdx, (tcu::CubeFace)face); in upload() local
401 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload()
[all …]
/external/python/google-api-python-client/docs/
Dauth.md3 …'s private data, your application must also be authorized by the user to access the data. For exam…
7access (defined below). Many API methods require authorized access, but some can use either. Some …
9 ### 1. Simple API access (API keys)
11 These API calls do not access any private user data. Your application must authenticate itself as a…
13 …use an [API key](api-keys.md) for your API Console project. Every simple access call your applicat…
17 ### 2. Authorized API access (OAuth 2.0)
19access private user data. Before you can call them, the user that has access to the private data m…
21 …application requests access to user data, the request must include one or more scopes. The user ne…
23access tokens:** When a user grants your application access, the OAuth 2.0 authorization server pr…
25 > **Warning:** Keep refresh and access tokens private. If someone obtains your tokens, they could u…
[all …]
/external/desugar/java/com/google/devtools/build/android/desugar/
DDefaultMethodClassFixer.java79 int access, in visit() argument
85 isInterface = BitFlags.isSet(access, Opcodes.ACC_INTERFACE); in visit()
93 super.visit(version, access, name, signature, superName, interfaces); in visit()
189 int access, String name, String desc, String signature, String[] exceptions) { in visitMethod() argument
192 recordIfInstanceMethod(access, name, desc); in visitMethod()
196 clInitMethodNode = new MethodNode(access, name, desc, signature, exceptions); in visitMethod()
199 return super.visitMethod(access, name, desc, signature, exceptions); in visitMethod()
305 private void recordIfInstanceMethod(int access, String name, String desc) { in recordIfInstanceMethod() argument
306 if (BitFlags.noneSet(access, Opcodes.ACC_STATIC)) { in recordIfInstanceMethod()
405 private boolean shouldStubAsDefaultMethod(int access, String name, String desc) { in shouldStubAsDefaultMethod() argument
[all …]
DJava7Compatibility.java44 private int access; field in Java7Compatibility
59 int access, in visit() argument
65 this.access = access; in visit()
69 isInterface = BitFlags.isSet(access, Opcodes.ACC_INTERFACE); in visit()
72 access, in visit() local
81 int access, String name, String desc, String signature, String[] exceptions) { in visitMethod() argument
85 && (access & (Opcodes.ACC_BRIDGE | Opcodes.ACC_ABSTRACT | Opcodes.ACC_STATIC)) in visitMethod()
91 && BitFlags.isSet(access, Opcodes.ACC_SYNTHETIC | Opcodes.ACC_STATIC)) { in visitMethod()
97 || BitFlags.isSet(access, Opcodes.ACC_ABSTRACT) in visitMethod()
103 super.visitMethod(access, name, desc, signature, exceptions)); in visitMethod()
[all …]
/external/parameter-framework/upstream/parameter/
DBaseParameter.cpp94 bool CBaseParameter::access(bool & /*bValue*/, bool /*bSet*/, in access() function in CBaseParameter
100 bool CBaseParameter::access(std::vector<bool> & /*abValues*/, bool /*bSet*/, in access() function in CBaseParameter
107 bool CBaseParameter::access(uint32_t & /*bValue*/, bool /*bSet*/, in access() function in CBaseParameter
113 bool CBaseParameter::access(std::vector<uint32_t> & /*abValues*/, bool /*bSet*/, in access() function in CBaseParameter
120 bool CBaseParameter::access(int32_t & /*bValue*/, bool /*bSet*/, in access() function in CBaseParameter
126 bool CBaseParameter::access(std::vector<int32_t> & /*abValues*/, bool /*bSet*/, in access() function in CBaseParameter
133 bool CBaseParameter::access(double & /*bValue*/, bool /*bSet*/, in access() function in CBaseParameter
139 bool CBaseParameter::access(std::vector<double> & /*abValues*/, bool /*bSet*/, in access() function in CBaseParameter
147 bool CBaseParameter::access(string &strValue, bool bSet, in access() function in CBaseParameter
175 bool CBaseParameter::access(std::vector<string> & /*astrValues*/, bool /*bSet*/, in access() function in CBaseParameter
[all …]
DBaseParameter.h54 virtual bool access(bool &bValue, bool bSet,
56 virtual bool access(std::vector<bool> &abValues, bool bSet,
60 virtual bool access(uint32_t &uiValue, bool bSet,
62 virtual bool access(std::vector<uint32_t> &auiValues, bool bSet,
66 virtual bool access(int32_t &iValue, bool bSet,
68 virtual bool access(std::vector<int32_t> &aiValues, bool bSet,
72 virtual bool access(double &dValue, bool bSet,
74 virtual bool access(std::vector<double> &adValues, bool bSet,
82 bool access(std::string &strValue, bool bSet,
84 virtual bool access(std::vector<std::string> &astrValues, bool bSet,
/external/deqp/framework/referencerenderer/
DrrMultisamplePixelBufferAccess.cpp105 MultisamplePixelBufferAccess getSubregion (const MultisamplePixelBufferAccess& access, int x, int y… in getSubregion() argument
107 …plePixelBufferAccess::fromMultisampleAccess(tcu::getSubregion(access.raw(), 0, x, y, access.getNum… in getSubregion()
110 MultisampleConstPixelBufferAccess getSubregion (const MultisampleConstPixelBufferAccess& access, in… in getSubregion() argument
112 …nstPixelBufferAccess::fromMultisampleAccess(tcu::getSubregion(access.raw(), 0, x, y, access.getNum… in getSubregion()
215 tcu::Vec4 resolveMultisamplePixel (const MultisampleConstPixelBufferAccess& access, int x, int y) in resolveMultisamplePixel() argument
218 for (int s = 0; s < access.getNumSamples(); s++) in resolveMultisamplePixel()
219 sum += access.raw().getPixel(s, x, y); in resolveMultisamplePixel()
221 return sum / (float)access.getNumSamples(); in resolveMultisamplePixel()
224 void clear (const MultisamplePixelBufferAccess& access, const tcu::Vec4& color) in clear() argument
226 tcu::clear(access.raw(), color); in clear()
[all …]
/external/mesa3d/src/gallium/drivers/panfrost/
Dpan_job.c323 struct panfrost_bo_access *access, in panfrost_bo_access_gc_fences() argument
326 if (access->writer) { in panfrost_bo_access_gc_fences()
327 panfrost_batch_fence_unreference(access->writer); in panfrost_bo_access_gc_fences()
328 access->writer = NULL; in panfrost_bo_access_gc_fences()
331 struct panfrost_batch_fence **readers_array = util_dynarray_begin(&access->readers); in panfrost_bo_access_gc_fences()
334 util_dynarray_foreach(&access->readers, struct panfrost_batch_fence *, in panfrost_bo_access_gc_fences()
343 if (!util_dynarray_resize(&access->readers, struct panfrost_batch_fence *, in panfrost_bo_access_gc_fences()
362 struct panfrost_bo_access *access = entry->data; in panfrost_gc_fences() local
364 assert(access); in panfrost_gc_fences()
365 panfrost_bo_access_gc_fences(ctx, access, entry->key); in panfrost_gc_fences()
[all …]

12345678910>>...163