HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 76 - 100 of 568) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/google-breakpad/src/third_party/libdisasm/
ia32_implicit.c 13 * would have 'write only' access for AX and 'read only' access for AL,
387 enum x86_op_access access = (enum x86_op_access) OP_PERM(list->type); local
416 op->access |= access;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
ProbeArrayStrategyFactoryTest.java 227 private IProbeArrayStrategy test(int version, int access, boolean clinit,
230 writer.visit(version, access, "Foo", "java/lang/Object", null, null);
264 private final int access; field in class:ProbeArrayStrategyFactoryTest.AddedMethod
269 AddedMethod(int access, String name, String desc) {
270 this.access = access;
278 assertEquals(InstrSupport.INITMETHOD_ACC, access);
285 assertEquals(InstrSupport.CLINIT_ACC, access);
303 public FieldVisitor visitField(int access, String name, String desc,
306 fieldAccess = access;
    [all...]
  /external/mksh/src/
os2.c 244 /* alias of access() */
247 /* replacement for access() of kLIBC which fails if there are trailing dots */
249 access(const char *name, int mode) function
290 /* access()/search_access() version */
  /external/pdfium/fxjs/xfa/
cjx_field.cpp 365 void CJX_Field::access(CFXJSE_Value* pValue, function in class:CJX_Field
  /external/python/cpython3/PC/clinic/
winreg.c.h 214 " access=winreg.KEY_WRITE)\n"
225 " access\n"
226 " An integer that specifies an access mask that describes the\n"
227 " desired security access for the key. Default is KEY_WRITE.\n"
243 REGSAM access);
249 static const char * const _keywords[] = {"key", "sub_key", "reserved", "access", NULL};
254 REGSAM access = KEY_WRITE; local
258 clinic_HKEY_converter, &key, &sub_key, &reserved, &access)) {
261 _return_value = winreg_CreateKeyEx_impl(module, key, sub_key, reserved, access);
313 "DeleteKeyEx($module, /, key, sub_key, access=winreg.KEY_WOW64_64KEY,\n
353 REGSAM access = KEY_WOW64_64KEY; local
641 REGSAM access = KEY_READ; local
693 REGSAM access = KEY_READ; local
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
type_manager.cpp 622 const SpvAccessQualifier access = local
631 static_cast<SpvImageFormat>(inst.GetSingleWordInOperand(6)), access);
    [all...]
  /external/turbine/javatests/com/google/turbine/lower/
LowerTest.java 108 int access = TurbineFlag.ACC_SUPER | TurbineFlag.ACC_PUBLIC; local
183 access,
268 String name, String outerName, String innerName, int access) {
295 assertThat(reader.u2()).isEqualTo(TurbineFlag.ACC_SUPER); // access
300 assertThat(reader.u2()).isEqualTo(0); // access
346 int access, String name, String desc, String signature, Object value) {
397 int access, String name, String desc, String signature, Object value) {
399 return super.visitField(access, name, desc, signature, value);
425 int access,
430 acc[0] = access;
    [all...]
  /external/u-boot/cmd/
mmc.c 728 u8 ack, access, part; local
735 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
742 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
752 u8 ack, part_num, access; local
773 access = simple_strtoul(argv[4], NULL, 10);
776 return mmc_set_part_conf(mmc, ack, part_num, access);
nvedit.c 542 enum env_flags_varaccess access = env_flags_parse_varaccess(flags); local
546 env_flags_get_varaccess_name(access));
554 enum env_flags_varaccess access; local
561 access = env_flags_parse_varaccess_from_binflags(entry->flags);
564 env_flags_get_varaccess_name(access));
582 /* Print the available variable access types */
583 printf("Available variable access flags (position %d):\n",
585 puts("\tFlag\tVariable Access Name\n");
593 "Variable Access");
602 "Variable Access");
    [all...]
  /external/u-boot/drivers/tpm/
tpm_tis_lpc.c 12 * slb9635), so this driver provides access to locality 0 only.
39 u32 access; member in struct:tpm_locality
94 /* TPM access wrappers to support tracing */
398 /* now request access to locality. */
399 tpm_write_word(priv, TIS_ACCESS_REQUEST_USE, &regs[locality].access);
402 ret = tis_wait_reg(priv, &regs[locality].access,
422 if (tpm_read_word(priv, &regs[locality].access) &
425 &regs[locality].access);
427 if (tis_wait_reg(priv, &regs[locality].access,
  /external/v8/src/compiler/
memory-optimizer.cc 359 ElementAccess const& access = ElementAccessOf(node->op()); local
361 node->ReplaceInput(1, ComputeIndex(access, index));
362 if (NeedsPoisoning(access.load_sensitivity) &&
363 access.machine_type.representation() !=
366 machine()->PoisonedLoad(access.machine_type));
368 NodeProperties::ChangeOp(node, machine()->Load(access.machine_type));
375 FieldAccess const& access = FieldAccessOf(node->op()); local
376 Node* offset = jsgraph()->IntPtrConstant(access.offset - access.tag());
378 if (NeedsPoisoning(access.load_sensitivity) &
392 ElementAccess const& access = ElementAccessOf(node->op()); local
407 FieldAccess const& access = FieldAccessOf(node->op()); local
    [all...]
node-properties.cc 437 FieldAccess const& access = FieldAccessOf(effect->op()); local
438 if (access.base_is_tagged == kTaggedBase &&
439 access.offset == HeapObject::kMapOffset) {
store-store-elimination.cc 177 StoreOffset ToOffset(const FieldAccess& access) {
178 return ToOffset(access.offset);
184 unsigned int RepSizeOf(FieldAccess access) {
185 return RepSizeOf(access.machine_type.representation());
188 bool AtMostTagged(FieldAccess access) {
189 return RepSizeOf(access) <= RepSizeOf(MachineRepresentation::kTagged);
192 bool AtLeastTagged(FieldAccess access) {
193 return RepSizeOf(access) >= RepSizeOf(MachineRepresentation::kTagged);
260 const FieldAccess& access = FieldAccessOf(node->op()); local
261 StoreOffset offset = ToOffset(access);
301 const FieldAccess& access = FieldAccessOf(node->op()); local
    [all...]
typed-optimization.cc 210 FieldAccess const& access = FieldAccessOf(node->op()); local
211 if (access.base_is_tagged == kTaggedBase &&
212 access.offset == HeapObject::kMapOffset) {
  /bionic/libc/kernel/uapi/rdma/
rdma_user_rxe.h 83 __u32 access; member in struct:rxe_send_wr::__anon1414::__anon1418
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
ExternalStorageHostTest.java 353 // Verify they can't access other users' content using media provider
440 * For security reasons, the shell user cannot access the shared storage of
460 assertTrue(probe, access(probe));
463 assertFalse(probe, access(probe));
466 assertFalse(probe, access(probe));
499 // can't access secondary user's storage.
673 private boolean access(String path) throws DeviceNotAvailableException { method in class:ExternalStorageHostTest
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicGeometryShaderTests.cpp 93 const tcu::ConstPixelBufferAccess& access,
102 const deUint32 bufferSize = access.getWidth() * access.getHeight() * access.getDepth() * access.getFormat().getPixelSize();
131 (deUint32)access.getWidth(), // deUint32 bufferRowLength;
132 (deUint32)access.getHeight(), // deUint32 bufferImageHeight;
141 (deUint32)access.getWidth(),
142 (deUint32)access.getHeight(),
143 (deUint32)access.getDepth(
283 tcu::PixelBufferAccess access = texture.getAccess(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemUtils.cpp 748 const tcu::ConstPixelBufferAccess& access = texture2D.getLevel(0); local
749 const tcu::PixelBufferAccess destAccess (access.getFormat(), access.getSize(), stagingBuffer->getAllocation().getHostPtr());
751 tcu::copy(destAccess, access);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationShaderInputOutputTests.cpp 194 tcu::PixelBufferAccess access = image.getAccess(); local
200 access.setPixel(white, x, y);
    [all...]
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 443 tcu::PixelBufferAccess access = m_textures[texNdx]->getRefTexture().getLevelFace(levelNdx, (tcu::CubeFace)face); local
445 access.setPixel(color, 0, 0);
446 access.setPixel(color, access.getWidth()-1, 0);
447 access.setPixel(color, 0, access.getHeight()-1);
448 access.setPixel(color, access.getWidth()-1, access.getHeight()-1);
  /external/desugar/java/com/google/devtools/build/android/desugar/
CoreLibrarySupport.java 149 int access,
161 access,
165 name + ":" + desc, EmulatedMethod.create(access, emulated, name, desc, exceptions));
364 method.access() | Opcodes.ACC_STATIC,
510 int access, Class<?> owner, String name, String desc, @Nullable String[] exceptions) {
511 return new AutoValue_CoreLibrarySupport_EmulatedMethod(access, owner, name, desc,
515 abstract int access(); method in class:CoreLibrarySupport.EmulatedMethod
  /external/kernel-headers/original/uapi/rdma/
rdma_user_rxe.h 104 __u32 access; member in struct:rxe_send_wr::__anon26306::__anon26310
  /external/mesa3d/src/mesa/vbo/
vbo_save_api.c 242 const GLbitfield access = (GL_MAP_WRITE_BIT | local
255 ctx->Driver.MapBufferRange(ctx, offset, size, access,
    [all...]
  /external/python/cpython3/Modules/_io/
winconsoleio.c 354 DWORD access = GENERIC_READ; local
364 access = GENERIC_WRITE;
368 on the specific access. This is required for modern names
374 self->handle = CreateFileW(name, access,
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
ClassFile.java 34 private final int access; field in class:ClassFile
47 int access,
58 this.access = access;
71 /** Class access and property flags. */
72 public int access() { method in class:ClassFile
73 return access;
130 private final int access; field in class:ClassFile.FieldInfo
139 int access,
146 this.access = access
156 public int access() { method in class:ClassFile.FieldInfo
199 private final int access; field in class:ClassFile.InnerClass
224 public int access() { method in class:ClassFile.InnerClass
232 private final int access; field in class:ClassFile.MethodInfo
267 public int access() { method in class:ClassFile.MethodInfo
321 private final int access; field in class:ClassFile.MethodInfo.ParameterInfo
334 public int access() { method in class:ClassFile.MethodInfo.ParameterInfo
    [all...]

Completed in 1503 milliseconds

1 2 34 5 6 7 8 91011>>