/kernel/linux/linux-6.6/security/landlock/ |
H A D | ruleset.c | 139 * access rights. 143 * access rights. 179 * Extends access rights when the request comes from in insert_rule() 186 this->layers[0].access |= (*layers)[0].access; in insert_rule() 194 * Intersects access rights when it is a merge between a in insert_rule() 223 .access = ~0, in build_check_layer() 227 BUILD_BUG_ON(layer.access < LANDLOCK_MASK_ACCESS_FS); in build_check_layer() 233 const access_mask_t access) in landlock_insert_rule() 236 .access in landlock_insert_rule() 231 landlock_insert_rule(struct landlock_ruleset *const ruleset, struct landlock_object *const object, const access_mask_t access) landlock_insert_rule() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_inlines.h | 373 * \param access bitmask of PIPE_MAP_x flags 381 unsigned access, in pipe_buffer_map_range() 393 map = pipe->buffer_map(pipe, buffer, 0, access, &box, transfer); in pipe_buffer_map_range() 404 * \param access bitmask of PIPE_MAP_x flags 410 unsigned access, in pipe_buffer_map() 414 access, transfer); in pipe_buffer_map() 539 * \param access bitmask of PIPE_MAP_x flags 545 unsigned access, in pipe_texture_map() 552 return context->texture_map(context, resource, level, access, in pipe_texture_map() 559 * \param access bitmas 377 pipe_buffer_map_range(struct pipe_context *pipe, struct pipe_resource *buffer, unsigned offset, unsigned length, unsigned access, struct pipe_transfer **transfer) pipe_buffer_map_range() argument 408 pipe_buffer_map(struct pipe_context *pipe, struct pipe_resource *buffer, unsigned access, struct pipe_transfer **transfer) pipe_buffer_map() argument 542 pipe_texture_map(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned layer, unsigned access, unsigned x, unsigned y, unsigned w, unsigned h, struct pipe_transfer **transfer) pipe_texture_map() argument 562 pipe_texture_map_3d(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned access, unsigned x, unsigned y, unsigned z, unsigned w, unsigned h, unsigned d, struct pipe_transfer **transfer) pipe_texture_map_3d() argument [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | BindGroupLayout.cpp | 116 if (entry.storageTexture.access != wgpu::StorageTextureAccess::Undefined) { in ValidateBindGroupLayoutEntry() 120 DAWN_TRY(ValidateStorageTextureAccess(storageTexture.access)); in ValidateBindGroupLayoutEntry() 129 if (storageTexture.access == wgpu::StorageTextureAccess::WriteOnly) { in ValidateBindGroupLayoutEntry() 203 return a.storageTexture.access != b.storageTexture.access || in operator !=() 241 } else if (binding.storageTexture.access != wgpu::StorageTextureAccess::Undefined) { in CreateBindGroupLayoutInfo() 323 if (aInfo.storageTexture.access != bInfo.storageTexture.access) { in SortBindingsCompare() 324 return aInfo.storageTexture.access < bInfo.storageTexture.access; in SortBindingsCompare() [all...] |
/kernel/linux/linux-5.10/drivers/mtd/maps/ |
H A D | pismo.c | 23 __le16 access; member 38 u16 access; member 164 region.access = le16_to_cpu(cs->access); in pismo_add_one() 178 dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n", in pismo_add_one() 179 i, cs->device, region.type, region.access, region.size / 1024); in pismo_add_one()
|
/kernel/linux/linux-6.6/drivers/mtd/maps/ |
H A D | pismo.c | 23 __le16 access; member 38 u16 access; member 164 region.access = le16_to_cpu(cs->access); in pismo_add_one() 178 dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n", in pismo_add_one() 179 i, cs->device, region.type, region.access, region.size / 1024); in pismo_add_one()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_set_reg.tex | 27 frames, it is normally possible to access only the preserved 30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access 59 the \Func{access\_mem}(), \Func{access\_reg}(), and 60 \Func{access\_fpreg}() call-backs (see
|
H A D | unw_get_fpreg.tex | 27 frames, it is normally possible to access only the preserved 30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access 56 the \Func{access\_mem}(), \Func{access\_reg}(), and 57 \Func{access\_fpreg}() call-backs (see
|
H A D | unw_get_reg.tex | 27 frames, it is normally possible to access only the preserved 30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access 57 the \Func{access\_mem}(), \Func{access\_reg}(), and 58 \Func{access\_fpreg}() call-backs (see
|
H A D | unw_set_fpreg.tex | 27 frames, it is normally possible to access only the preserved 30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access 58 the \Func{access\_mem}(), \Func{access\_reg}(), and 59 \Func{access\_fpreg}() call-backs (see
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_readonly_images_to_tex.c | 92 enum gl_access_qualifier access = 0; in is_readonly_image_op() local 95 access = var->data.access; in is_readonly_image_op() 97 access = nir_intrinsic_access(intrin); in is_readonly_image_op() 98 if (access & ACCESS_NON_WRITEABLE) in is_readonly_image_op() 199 * - Variable access is used to indicate read-only instead of intrinsic access
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_resource.h | 62 VkAccessFlags access; member 275 zink_resource_usage_check_completion(struct zink_screen *screen, struct zink_resource *res, enum zink_resource_access access) in zink_resource_usage_check_completion() argument 277 return zink_bo_usage_check_completion(screen, res->obj->bo, access); in zink_resource_usage_check_completion() 281 zink_resource_usage_wait(struct zink_context *ctx, struct zink_resource *res, enum zink_resource_access access) in zink_resource_usage_wait() argument 283 zink_bo_usage_wait(ctx, res->obj->bo, access); in zink_resource_usage_wait()
|
/third_party/lame/test/ |
H A D | lametest.py | 47 status = os.access(name1, os.R_OK) 130 status = os.access(options_file, os.R_OK) 135 status = os.access(input_file, os.R_OK) 150 status = os.access(os.path.join(x, lame1), os.X_OK) 160 status = os.access(os.path.join(x, lame2), os.X_OK)
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | 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) in SSBOArrayLengthCase() argument 77 , m_access (access) in SSBOArrayLengthCase() 288 SSBOArrayLengthCase::ArrayAccess access; in init() member 306 this->addChild(new SSBOArrayLengthCase(m_context, name.c_str(), desc.c_str(), qualifiers[qualifierNdx].access, arraysSized[sizeNdx])); in init()
|
/kernel/linux/linux-5.10/include/rdma/ |
H A D | ib_umem_odp.h | 22 * The lower two bits designate access permissions. 29 * also protects access to the mmu notifier counters. 87 int access, const struct mmu_interval_notifier_ops *ops); 89 int access); 106 int access, const struct mmu_interval_notifier_ops *ops) in ib_umem_odp_get() 105 ib_umem_odp_get(struct ib_device *device, unsigned long addr, size_t size, int access, const struct mmu_interval_notifier_ops *ops) ib_umem_odp_get() argument
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | node.h | 69 unsigned access); 78 unsigned access) in node_set_perf_attrs() 140 unsigned access); 76 node_set_perf_attrs(unsigned int nid, struct node_hmem_attrs *hmem_attrs, unsigned access) node_set_perf_attrs() argument
|
/kernel/linux/linux-6.6/include/rdma/ |
H A D | ib_umem_odp.h | 22 * The lower two bits designate access permissions. 29 * also protects access to the mmu notifier counters. 87 int access, const struct mmu_interval_notifier_ops *ops); 89 int access); 106 int access, const struct mmu_interval_notifier_ops *ops) in ib_umem_odp_get() 105 ib_umem_odp_get(struct ib_device *device, unsigned long addr, size_t size, int access, const struct mmu_interval_notifier_ops *ops) ib_umem_odp_get() argument
|
/third_party/ltp/lib/ |
H A D | tst_virt.c | 54 if (access("/proc/xen", F_OK) == 0) in is_xen() 57 if (access("/sys/hypervisor/type", F_OK) == 0) { in is_xen() 73 if (access("/proc/sysinfo", F_OK) != 0) in is_ibmz()
|
H A D | tst_module.c | 35 if (access(mod_name, F_OK) == 0) { in tst_module_exists_() 52 err = access(buf, F_OK); in tst_module_exists_() 64 err = access(buf, F_OK); in tst_module_exists_()
|
/third_party/node/deps/v8/src/base/ |
H A D | bounded-page-allocator.h | 71 Permission access) override; 76 bool AllocatePagesAt(Address address, size_t size, Permission access); 82 bool SetPermissions(void* address, size_t size, Permission access) override;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Buffer11.cpp | 70 D3D11_MAP GetD3DMapTypeFromBits(BufferUsage usage, GLbitfield access) in GetD3DMapTypeFromBits() argument 72 bool readBit = ((access & GL_MAP_READ_BIT) != 0); in GetD3DMapTypeFromBits() 73 bool writeBit = ((access & GL_MAP_WRITE_BIT) != 0); in GetD3DMapTypeFromBits() 118 virtual bool isCPUAccessible(GLbitfield access) const = 0; 133 GLbitfield access, 161 bool isCPUAccessible(GLbitfield access) const override; 177 GLbitfield access, 234 bool isCPUAccessible(GLbitfield access) const override { return true; } 256 GLbitfield access, 274 bool isCPUAccessible(GLbitfield access) cons 538 map(const gl::Context *context, GLenum access, void **mapPtr) map() argument 546 mapRange(const gl::Context *context, size_t offset, size_t length, GLbitfield access, void **mapPtr) mapRange() argument 1358 map(const gl::Context *context, size_t offset, size_t length, GLbitfield access, uint8_t **mapPointerOut) map() argument 1678 map(const gl::Context *context, size_t offset, size_t length, GLbitfield access, uint8_t **mapPointerOut) map() argument 1736 map(const gl::Context *context, size_t offset, size_t length, GLbitfield access, uint8_t **mapPointerOut) map() argument 1861 map(const gl::Context *context, size_t offset, size_t length, GLbitfield access, uint8_t **mapPointerOut) map() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | simplified-operator.cc | 67 size_t hash_value(FieldAccess const& access) { in hash_value() argument 71 return base::hash_combine(access.base_is_tagged, access.offset, in hash_value() 72 access.machine_type, access.const_field_info, in hash_value() 73 access.is_store_in_literal); in hash_value() 76 std::ostream& operator<<(std::ostream& os, FieldAccess const& access) { in operator <<() argument 77 os << "[" << access.base_is_tagged << ", " << access.offset << ", "; in operator <<() 80 if (access in operator <<() 120 hash_value(ElementAccess const& access) hash_value() argument 128 operator <<(std::ostream& os, ElementAccess const& access) operator <<() argument 140 hash_value(ObjectAccess const& access) hash_value() argument 144 operator <<(std::ostream& os, ObjectAccess const& access) operator <<() argument 1852 StoreField( const FieldAccess& access, bool maybe_initializing_or_transitioning) StoreField() argument [all...] |
/kernel/linux/linux-5.10/sound/usb/ |
H A D | mixer_us16x08.c | 765 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 775 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 785 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 795 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 805 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 815 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 825 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 835 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 846 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 857 .access [all...] |
/kernel/linux/linux-6.6/drivers/hwtracing/coresight/ |
H A D | coresight-core.c | 72 val = csdev_access_relaxed_read_pair(&csdev->access, cs_attr->lo_off, cs_attr->hi_off); in coresight_simple_show_pair() 86 val = csdev_access_relaxed_read32(&csdev->access, cs_attr->off); in coresight_simple_show32() 138 return csdev_access_relaxed_read32(&csdev->access, CORESIGHT_CLAIMCLR); in coresight_read_claim_tags() 153 csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED, in coresight_set_claim_tags() 160 csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED, in coresight_clear_claim_tags() 199 CS_UNLOCK(csdev->access.base); in coresight_claim_device() 201 CS_LOCK(csdev->access.base); in coresight_claim_device() 234 CS_UNLOCK(csdev->access.base); in coresight_disclaim_device() 236 CS_LOCK(csdev->access.base); in coresight_disclaim_device() 1470 * @csa: coresight device access fo [all...] |
/kernel/linux/linux-6.6/sound/usb/ |
H A D | mixer_us16x08.c | 765 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 775 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 785 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 795 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 805 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 815 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 825 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 835 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 846 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 857 .access [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | BufferVk.cpp | 26 // Vertex attribute buffers are used as storage buffers for conversion in compute, where access to 37 // device local memory to speed up access to and from the GPU. 39 // will now request host cached memory to speed up access from the CPU. 66 // For non-static usage where the CPU performs a write-only access, request in GetPreferredMemoryType() 530 vk::CommandBufferAccess access; in copySubData() local 533 access.onBufferSelfCopy(mBuffer); in copySubData() 537 access.onBufferTransferRead(&sourceBuffer); in copySubData() 538 access.onBufferTransferWrite(mBuffer); in copySubData() 542 ANGLE_TRY(contextVk->getOutsideRenderPassCommandBuffer(access, &commandBuffer)); in copySubData() 602 angle::Result BufferVk::map(const gl::Context *context, GLenum access, voi argument 610 mapRange(const gl::Context *context, size_t offset, size_t length, GLbitfield access, void **mapPtr) mapRange() argument 620 mapImpl(ContextVk *contextVk, GLbitfield access, void **mapPtr) mapImpl() argument 625 ghostMappedBuffer(ContextVk *contextVk, VkDeviceSize offset, VkDeviceSize length, GLbitfield access, void **mapPtr) ghostMappedBuffer() argument 684 mapRangeImpl(ContextVk *contextVk, VkDeviceSize offset, VkDeviceSize length, GLbitfield access, void **mapPtr) mapRangeImpl() argument [all...] |