Home
last modified time | relevance | path

Searched refs:access (Results 751 - 775 of 2575) sorted by relevance

1...<<31323334353637383940>>...103

/third_party/musl/libc-test/src/functionalext/supplement/dirent/
H A Dopendir.c31 if (access(path, F_OK) == 0) { in opendir_0100()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dlgetxattr.c33 if (access(path, F_OK) == 0) { in lgetxattr_0100()
H A Dllistxattr.c33 if (access(path, F_OK) == 0) { in llistxattr_0100()
H A Dlistxattr.c33 if (access(path, F_OK) == 0) { in listxattr_0100()
H A Dppoll.c43 ret = access("ppoll_function_file", F_OK); in ppoll_0100()
/third_party/musl/libc-test/src/functionalext/supplement/mman/
H A Dmadvise.c36 if (access(path, F_OK) == 0) { in clearfile()
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dpreadv.c60 ret = access("preadv_function_value.c", F_OK); in preadv_0100()
H A Dpwrite.c25 if (access(name, F_OK) == 0) { in rm_file()
/third_party/skia/third_party/externals/tint/src/ast/
H A Dstorage_texture.h20 #include "src/ast/access.h"
82 /// @param access_control the access control for the texture.
115 /// The access control
116 const Access access; member in tint::ast::StorageTexture
/third_party/skia/third_party/icu/
H A Dmake_data_cpp.py24 mm = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
/third_party/toybox/porting/liteos_a/toys/posix/
H A Dtouch.c18 Update the access and modification times of each FILE to the current time.
70 if (access(s, F_OK) && (-1!=(fd = open(s, O_CREAT, 0666)))) { in touch_main()
/third_party/toybox/toys/posix/
H A Dtouch.c18 Update the access and modification times of each FILE to the current time.
20 -a Change access time
77 if (access(s, F_OK) && (-1!=(fd = open(s, O_CREAT, 0666)))) { in touch_main()
/third_party/mesa3d/src/compiler/spirv/
H A Dspirv_to_nir.c358 vtn_fail("Invalid image access qualifier"); in spirv_to_gl_access_qualifier()
364 enum gl_access_qualifier *access) in vtn_get_image()
368 if (access) in vtn_get_image()
369 *access |= spirv_to_gl_access_qualifier(b, type->access_qualifier); in vtn_get_image()
1007 int member, enum gl_access_qualifier access) in vtn_handle_access_qualifier()
1012 type->access |= access; in vtn_handle_access_qualifier()
1561 /* Propagate access specifiers that are present on all members to the overall type */ in vtn_handle_type()
1565 overall_access &= val->type->members[i]->access; in vtn_handle_type()
1566 val->type->access in vtn_handle_type()
363 vtn_get_image(struct vtn_builder *b, uint32_t value_id, enum gl_access_qualifier *access) vtn_get_image() argument
1006 vtn_handle_access_qualifier(struct vtn_builder *b, struct vtn_type *type, int member, enum gl_access_qualifier access) vtn_handle_access_qualifier() argument
2642 enum gl_access_qualifier *access = void_ctx; non_uniform_decoration_cb() local
2685 enum gl_access_qualifier access = 0; vtn_handle_texture() local
2696 enum gl_access_qualifier access = 0; vtn_handle_texture() local
3083 enum gl_access_qualifier access = 0; vtn_handle_texture() local
3242 enum gl_access_qualifier access = 0; vtn_handle_image() local
3680 enum gl_access_qualifier access = 0; vtn_handle_atomics() local
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_context.c784 // does not access potentially uninitialized data. in create_bvci()
1415 VkAccessFlags access = VK_ACCESS_SHADER_READ_BIT; in zink_set_shader_buffers() local
1418 access |= VK_ACCESS_SHADER_WRITE_BIT; in zink_set_shader_buffers()
1421 new_res->barrier_access[p_stage == PIPE_SHADER_COMPUTE] |= access; in zink_set_shader_buffers()
1422 zink_batch_resource_usage_set(&ctx->batch, new_res, access & VK_ACCESS_SHADER_WRITE_BIT); in zink_set_shader_buffers()
1427 zink_resource_buffer_barrier(ctx, new_res, access, in zink_set_shader_buffers()
1432 if (zink_resource_access_is_write(access)) in zink_set_shader_buffers()
1516 unbind_shader_image_counts(ctx, res, is_compute, image_view->base.access & PIPE_IMAGE_ACCESS_WRITE); in unbind_shader_image()
1625 VkAccessFlags access = 0; in zink_set_shader_images() local
1626 if (images[i].access in zink_set_shader_images()
2034 VkAccessFlags access = 0; zink_make_image_handle_resident() local
2442 VkAccessFlags access; zink_prep_fb_attachment() local
[all...]
/kernel/linux/linux-6.6/drivers/hwtracing/coresight/
H A Dcoresight-etm4x-core.c201 etm4_os_unlock_csa(drvdata, &drvdata->csdev->access); in etm4_os_unlock()
209 etm_write_os_lock(drvdata, &drvdata->csdev->access, 0x1); in etm4_os_lock()
408 struct csdev_access *csa = &csdev->access; in etm4_enable_hw()
521 /* Synchronize the register updates for sysreg access */ in etm4_enable_hw()
872 struct csdev_access *csa = &csdev->access; in etm4_disable_hw()
954 control = etm4x_relaxed_read32(&csdev->access, TRCVICTLR); in etm4_disable_perf()
1052 * ETMs implementing sysreg access must implement TRCDEVARCH. in etm4_init_sysreg_access()
1116 * a memory map to prevent sysreg access on broken in etm4_init_csdev_access()
1170 * If we are unable to detect the access mechanism, in etm4_init_arch_data()
1308 /* Set ELx trace filter access i
2069 struct csdev_access access = { 0 }; etm4_probe() local
2185 struct csdev_access access = { 0 }; etm4_probe_cpu() local
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_descriptors.c291 bool is_stencil, uint16_t access, uint32_t * restrict state) in si_set_mutable_tex_desc_fields()
322 if (!(access & SI_IMAGE_ACCESS_DCC_OFF) && vi_dcc_enabled(tex, first_level)) { in si_set_mutable_tex_desc_fields()
373 (access & SI_IMAGE_ACCESS_ALLOW_DCC_STORE)); in si_set_mutable_tex_desc_fields()
756 if (view->access & PIPE_IMAGE_ACCESS_WRITE) in si_set_shader_image_desc()
769 unsigned access = view->access; in si_set_shader_image_desc() local
772 access |= SI_IMAGE_ACCESS_ALLOW_DCC_STORE; in si_set_shader_image_desc()
778 !(access & SI_IMAGE_ACCESS_DCC_OFF) && in si_set_shader_image_desc()
779 ((!(access & SI_IMAGE_ACCESS_ALLOW_DCC_STORE) && (access in si_set_shader_image_desc()
287 si_set_mutable_tex_desc_fields(struct si_screen *sscreen, struct si_texture *tex, const struct legacy_surf_level *base_level_info, unsigned base_level, unsigned first_level, unsigned block_width, bool is_stencil, uint16_t access, uint32_t * restrict state) si_set_mutable_tex_desc_fields() argument
2607 si_make_image_handle_resident(struct pipe_context *ctx, uint64_t handle, unsigned access, bool resident) si_make_image_handle_resident() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DTextureVk.cpp271 vk::ImageAccess access) in AdjustStorageViewFormatPerWorkarounds()
275 intended->getActualImageFormatID(access) == angle::FormatID::R32_FLOAT) in AdjustStorageViewFormatPerWorkarounds()
980 vk::CommandBufferAccess access; in copySubImageImplWithTransfer() local
981 access.onImageTransferRead(VK_IMAGE_ASPECT_COLOR_BIT, srcImage); in copySubImageImplWithTransfer()
1020 access.onImageTransferWrite(level, 1, baseLayer, layerCount, VK_IMAGE_ASPECT_COLOR_BIT, in copySubImageImplWithTransfer()
1024 ANGLE_TRY(contextVk->getOutsideRenderPassCommandBuffer(access, &commandBuffer)); in copySubImageImplWithTransfer()
1057 access.onImageTransferWrite(gl::LevelIndex(0), 1, 0, layerCount, VK_IMAGE_ASPECT_COLOR_BIT, in copySubImageImplWithTransfer()
1061 ANGLE_TRY(contextVk->getOutsideRenderPassCommandBuffer(access, &commandBuffer)); in copySubImageImplWithTransfer()
1773 vk::CommandBufferAccess access; in copyBufferDataToImage() local
1774 access in copyBufferDataToImage()
269 AdjustStorageViewFormatPerWorkarounds(ContextVk *contextVk, const vk::Format *intended, vk::ImageAccess access) AdjustStorageViewFormatPerWorkarounds() argument
1828 vk::CommandBufferAccess access; generateMipmapsWithCompute() local
2070 vk::CommandBufferAccess access; copyAndStageImageData() local
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_permission_test.cpp237 int bundleCodeExist = access(BUNDLE_CODE_DIR.c_str(), F_OK); in CheckFileExist()
240 int bundleDataExist = access(BUNDLE_DATA_DIR.c_str(), F_OK); in CheckFileExist()
246 int bundleCodeExist = access(BUNDLE_CODE_DIR.c_str(), F_OK); in CheckFileNonExist()
249 int bundleDataExist = access(BUNDLE_DATA_DIR.c_str(), F_OK); in CheckFileNonExist()
/foundation/filemanagement/storage_service/services/storage_daemon/utils/
H A Dfile_utils.cpp109 if (TEMP_FAILURE_RETRY(access(subPath.c_str(), F_OK)) != 0) { in MkDirRecurse()
116 return TEMP_FAILURE_RETRY(access(path.c_str(), F_OK)) == 0; in MkDirRecurse()
516 if (TEMP_FAILURE_RETRY(access(from.c_str(), F_OK)) != 0) { in MoveDataShell()
666 if (!access(path.c_str(), F_OK) || path == "") { in CreateFolder()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_surface.cpp44 SkSurface::BackendHandleAccess ConvertToSkiaBackendAccess(BackendAccess access) in ConvertToSkiaBackendAccess() argument
46 switch (access) { in ConvertToSkiaBackendAccess()
380 BackendTexture SkiaSurface::GetBackendTexture(BackendAccess access) const in GetBackendTexture()
387 GrBackendTexture grBackendTexture = skSurface_->getBackendTexture(ConvertToSkiaBackendAccess(access)); in GetBackendTexture()
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dproc-xsc3.S417 mrc p15, 0, r5, c15, c1, 0 @ CP access reg
435 mcr p15, 0, r5, c15, c1, 0 @ CP access reg
457 mov r0, #1 << 6 @ cp6 access for early sched_clock
458 mcr p15, 0, r0, c15, c1, 0 @ write CP access register
/kernel/linux/linux-6.6/arch/arm/mm/
H A Dproc-xsc3.S417 mrc p15, 0, r5, c15, c1, 0 @ CP access reg
435 mcr p15, 0, r5, c15, c1, 0 @ CP access reg
457 mov r0, #1 << 6 @ cp6 access for early sched_clock
458 mcr p15, 0, r0, c15, c1, 0 @ write CP access register
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Drdma_core.c65 * When a shared access is required, we use a positive counter. Each in uverbs_try_lock_object()
66 * shared access request checks that the value != -1 and increment it. in uverbs_try_lock_object()
67 * Exclusive access is required for operations like write or destroy. in uverbs_try_lock_object()
68 * In exclusive access mode, we check that the counter is zero (nobody in uverbs_try_lock_object()
69 * claimed this object) and we set it to -1. Releasing a shared access in uverbs_try_lock_object()
71 * access locks, since only a single one of them is is allowed in uverbs_try_lock_object()
711 * read access or zero it in case of exclusive access. See in rdma_lookup_put_uobject()
925 uverbs_get_uobject_from_file(u16 object_id, enum uverbs_obj_access access, in uverbs_get_uobject_from_file() argument
931 switch (access) { in uverbs_get_uobject_from_file()
950 uverbs_finalize_object(struct ib_uobject *uobj, enum uverbs_obj_access access, bool hw_obj_valid, bool commit, struct uverbs_attr_bundle *attrs) uverbs_finalize_object() argument
[all...]
/kernel/linux/linux-5.10/sound/pci/au88x0/
H A Dau88x0_pcm.c118 kctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; in vortex_notify_pcm_vol_change()
120 kctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE; in vortex_notify_pcm_vol_change()
509 .access = SNDRV_CTL_ELEM_ACCESS_READ,
585 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
/kernel/linux/linux-5.10/sound/firewire/bebob/
H A Dbebob_maudio.c402 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
435 .access = SNDRV_CTL_ELEM_ACCESS_READ,
527 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
583 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,

Completed in 29 milliseconds

1...<<31323334353637383940>>...103