Home
last modified time | relevance | path

Searched refs:access (Results 2601 - 2625 of 2687) sorted by relevance

1...<<101102103104105106107108

/third_party/mesa3d/src/nouveau/codegen/lib/
H A Dgk104.asm93 // $p0: access predicate
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_c.cpp2164 return static_cast<SpvAccessQualifier>(static_cast<const SPIRType *>(type)->image.access); in spvc_type_get_image_access_qualifier()
/third_party/python/Lib/test/
H A Dtest_tempfile.py345 if os.access(tempfile.tempdir, os.W_OK):
807 # Use icacls.exe to extract the users with some level of access
809 # no access. The exact ACL is going to vary based on which user
/third_party/pulseaudio/src/utils/
H A Dpadsp.c198 _access = (int (*)(const char*, int)) dlsym_fn(RTLD_NEXT, "access"); \
1454 debug(DEBUG_LEVEL_NORMAL, __FILE__": bad access!\n"); in sndstat_open()
2463 int access(const char *pathname, int mode) { function
2465 debug(DEBUG_LEVEL_VERBOSE, __FILE__": access(%s)\n", pathname?pathname:"NULL");
2474 debug(DEBUG_LEVEL_NORMAL, __FILE__": access(%s, %x) = EACCESS\n", pathname, mode);
2479 debug(DEBUG_LEVEL_NORMAL, __FILE__": access(%s, %x) = OK\n", pathname, mode);
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_1_autogen.cpp11114 void *GL_APIENTRY GL_MapBuffer(GLenum target, GLenum access) in GL_MapBuffer() argument
11117 EVENT(context, GLMapBuffer, "context = %d, target = %s, access = %s", CID(context), in GL_MapBuffer()
11119 GLenumToString(GLenumGroup::BufferAccessARB, access)); in GL_MapBuffer()
11128 ValidateMapBuffer(context, angle::EntryPoint::GLMapBuffer, targetPacked, access)); in GL_MapBuffer()
11131 returnValue = context->mapBuffer(targetPacked, access); in GL_MapBuffer()
11137 ANGLE_CAPTURE(MapBuffer, isCallValid, context, targetPacked, access, returnValue); in GL_MapBuffer()
/third_party/mesa3d/src/amd/compiler/
H A Daco_instruction_selection.cpp813 /* This must be a swizzled access to %a.zz where %a is v6b */
6181 unsigned access = nir_intrinsic_access(instr);
6183 if (access & ACCESS_VOLATILE)
6185 if (access & ACCESS_CAN_REORDER)
6221 unsigned access = nir_intrinsic_access(instr);
6279 load->glc = access & (ACCESS_VOLATILE | ACCESS_COHERENT);
6296 load->glc = access & (ACCESS_VOLATILE | ACCESS_COHERENT) ? 1 : 0;
6337 unsigned access = nir_intrinsic_access(instr);
6339 ((access & (ACCESS_VOLATILE | ACCESS_COHERENT | ACCESS_NON_READABLE)) &&
6686 unsigned access
[all...]
/third_party/typescript/lib/
H A DtypingsInstaller.js7137 // Failed for some other reason (access denied?); still throw
8275 An_element_access_expression_should_take_an_argument: diag(1011, ts.DiagnosticCategory.Error, "An_element_access_expression_should_take_an_argument_1011", "An element access expression should take an argument."),
8293 super_must_be_followed_by_an_argument_list_or_member_access: diag(1034, ts.DiagnosticCategory.Error, "super_must_be_followed_by_an_argument_list_or_member_access_1034", "'super' must be followed by an argument list or member access."),
8630 Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression: diag(1451, ts.DiagnosticCategory.Error, "Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member__1451", "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression"),
8648 An_instantiation_expression_cannot_be_followed_by_a_property_access: diag(1477, ts.DiagnosticCategory.Error, "An_instantiation_expression_cannot_be_followed_by_a_property_access_1477", "An instantiation expression cannot be followed by a property access."),
8706 super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class: diag(2338, ts.DiagnosticCategory.Error, "super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_der_2338", "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class."),
8724 The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access: diag(2357, ts.DiagnosticCategory.Error, "The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access_2357", "The operand of an increment or decrement operator must be a variable or a property access."),
8729 The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access: diag(2364, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access_2364", "The left-hand side of an assignment expression must be a variable or a property access."),
8769 The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access: diag(2406, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access_2406", "The left-hand side of a 'for...in' statement must be a variable or a property access."),
8831 const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query: diag(2475, ts.DiagnosticCategory.Error, "const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475", "'const' enums can only be used in property or index access expression
[all...]
H A Dtsc.js5412 An_element_access_expression_should_take_an_argument: diag(1011, ts.DiagnosticCategory.Error, "An_element_access_expression_should_take_an_argument_1011", "An element access expression should take an argument."),
5430 super_must_be_followed_by_an_argument_list_or_member_access: diag(1034, ts.DiagnosticCategory.Error, "super_must_be_followed_by_an_argument_list_or_member_access_1034", "'super' must be followed by an argument list or member access."),
5767 Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression: diag(1451, ts.DiagnosticCategory.Error, "Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member__1451", "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression"),
5785 An_instantiation_expression_cannot_be_followed_by_a_property_access: diag(1477, ts.DiagnosticCategory.Error, "An_instantiation_expression_cannot_be_followed_by_a_property_access_1477", "An instantiation expression cannot be followed by a property access."),
5843 super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class: diag(2338, ts.DiagnosticCategory.Error, "super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_der_2338", "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class."),
5861 The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access: diag(2357, ts.DiagnosticCategory.Error, "The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access_2357", "The operand of an increment or decrement operator must be a variable or a property access."),
5866 The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access: diag(2364, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access_2364", "The left-hand side of an assignment expression must be a variable or a property access."),
5906 The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access: diag(2406, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access_2406", "The left-hand side of a 'for...in' statement must be a variable or a property access."),
5968 const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query: diag(2475, ts.DiagnosticCategory.Error, "const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475", "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query."),
5976 The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access: diag(2487, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access_2487", "The left-hand side of a 'for...of' statement must be a variable or a property access
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cEnhancedLayoutsTests.cpp1818 * @param access Requested access
1822 GLvoid* Buffer::Map(ACCESS access) in Map() argument
1826 return Map(gl, m_buffer, access); in Map()
1955 * @param access Access rights for mapped region
1959 void* Buffer::Map(const Functions& gl, BUFFERS buffer, ACCESS access) in Map() argument
1962 GLenum gl_access = GetAccessGLenum(access); in Map()
1981 /** Return GLenum representation of requested access
1983 * @param access Requested access
1987 GetAccessGLenum(ACCESS access) GetAccessGLenum() argument
[all...]
H A Dgl4cShaderImageLoadStoreTests.cpp729 bool CheckBinding(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, in CheckBinding() argument
800 if (static_cast<GLenum>(i) != access) in CheckBinding()
803 << " should be " << access << tcu::TestLog::EndMessage; in CheckBinding()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_ext_autogen.cpp5835 GLbitfield access, in CaptureMapBufferRangeEXT()
5843 paramBuffer.addEnumParam("access", GLenumGroup::BufferAccessMask, ParamType::TGLbitfield, in CaptureMapBufferRangeEXT()
5844 access); in CaptureMapBufferRangeEXT()
9859 GLenum access, in CaptureMapBufferOES()
9865 paramBuffer.addEnumParam("access", GLenumGroup::BufferAccessARB, ParamType::TGLenum, access); in CaptureMapBufferOES()
5830 CaptureMapBufferRangeEXT(const State &glState, bool isCallValid, BufferBinding targetPacked, GLintptr offset, GLsizeiptr length, GLbitfield access, void *returnValue) CaptureMapBufferRangeEXT() argument
9856 CaptureMapBufferOES(const State &glState, bool isCallValid, BufferBinding targetPacked, GLenum access, void *returnValue) CaptureMapBufferOES() argument
/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H A Dmain_thread.cpp1762 bool isFirstStartUpWeb = (access(nwebPath.c_str(), F_OK) != 0); in HandleLaunchApplication()
/foundation/multimedia/av_codec/test/unittest/avsource_test/
H A Davsource_unit_test.cpp2064 if (access(g_mp4VvcPath.c_str(), F_OK) != 0) { in HWTEST_F()
/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Dhiplayer_impl.cpp217 if (access(realUrlPath.c_str(), R_OK) != 0) { in GetRealPath()
/kernel/linux/linux-5.10/drivers/infiniband/sw/rdmavt/
H A Dqp.c860 * access.
2057 reg_wr(wr)->access); in rvt_post_one_wr()
/kernel/linux/linux-5.10/sound/pci/hda/
H A Dpatch_hdmi.c390 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE |
/kernel/linux/linux-5.10/sound/pci/cs46xx/
H A Dcs46xx_lib.c2322 .access = SNDRV_CTL_ELEM_ACCESS_READ
/kernel/linux/linux-5.10/tools/lib/bpf/
H A Dbtf.c4466 if (access(path, R_OK)) in libbpf_find_kernel_btf()
/kernel/linux/linux-5.10/tools/perf/util/
H A Dannotate.c1202 * of 'struct disasm_line' to have an easy access.
1677 access(filename, R_OK)) { in dso__disassemble_filename()
/kernel/linux/linux-5.10/tools/perf/ui/browsers/
H A Dhists.c2180 if (access(filename, F_OK)) in hist_browser__dump()
/kernel/linux/linux-5.10/include/rdma/
H A Dib_verbs.h547 * @lock - Mutex to protect parallel write access to lifespan and values
1413 int access; member
1505 atomic_t usecnt; /* protects exclusive access */
2630 /* Do not access @dma_device directly from ULP nor from HW drivers. */
3133 * that the subnet manager can access. Prior to the fabric being fully
4266 * access flags are set. "Local write" and "remote write" obviously in ib_access_writable()
4267 * require write access. "Remote atomic" can do things like fetch and in ib_access_writable()
/kernel/linux/linux-5.10/mm/
H A Dmmap.c1483 * to. we assume access permissions have been handled by the open in do_mmap()
1840 * vma_link() below can deny write-access if VM_DENYWRITE is set in mmap_region()
3497 .access = NULL,
/kernel/linux/linux-6.6/include/rdma/
H A Dib_verbs.h584 * @lock - Mutex to protect parallel write access to lifespan and values
1441 int access; member
1535 atomic_t usecnt; /* protects exclusive access */
2702 /* Do not access @dma_device directly from ULP nor from HW drivers. */
3192 * that the subnet manager can access. Prior to the fabric being fully
4391 * access flags are set. "Local write" and "remote write" obviously in ib_access_writable()
4392 * require write access. "Remote atomic" can do things like fetch and in ib_access_writable()
/kernel/linux/linux-6.6/drivers/infiniband/sw/rdmavt/
H A Dqp.c821 * access.
2006 reg_wr(wr)->access); in rvt_post_one_wr()
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
H A Dhists.c2181 if (access(filename, F_OK)) in hist_browser__dump()

Completed in 244 milliseconds

1...<<101102103104105106107108