Home
last modified time | relevance | path

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

/freebsd-12.1/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_sdk.c196 void *buf, enum mlx5_fpga_access_type access_type) in mlx5_fpga_mem_read() argument
200 if (access_type == MLX5_FPGA_ACCESS_TYPE_DONTCARE) in mlx5_fpga_mem_read()
201 access_type = fdev->shell_conn ? MLX5_FPGA_ACCESS_TYPE_RDMA : in mlx5_fpga_mem_read()
205 size, (uintmax_t)addr, access_type ? "RDMA" : "I2C"); in mlx5_fpga_mem_read()
207 switch (access_type) { in mlx5_fpga_mem_read()
220 access_type); in mlx5_fpga_mem_read()
229 void *buf, enum mlx5_fpga_access_type access_type) in mlx5_fpga_mem_write() argument
233 if (access_type == MLX5_FPGA_ACCESS_TYPE_DONTCARE) in mlx5_fpga_mem_write()
238 size, (uintmax_t)addr, access_type ? "RDMA" : "I2C"); in mlx5_fpga_mem_write()
240 switch (access_type) { in mlx5_fpga_mem_write()
[all …]
H A Dsdk.h261 void *buf, enum mlx5_fpga_access_type access_type);
279 void *buf, enum mlx5_fpga_access_type access_type);
/freebsd-12.1/sys/dev/mlx5/mlx5_fpga_tools/
H A Dmlx5fpga_tools_char.c45 enum mlx5_fpga_access_type access_type; member
62 context->access_type = MLX5_FPGA_ACCESS_TYPE_DONTCARE; in tools_char_open()
69 u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt) in mem_read() argument
76 ret = mlx5_fpga_mem_read(tdev->fdev, count, address, buf, access_type); in mem_read()
90 u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt) in mem_write() argument
97 ret = mlx5_fpga_mem_write(tdev->fdev, count, address, buf, access_type); in mem_write()
153 context->access_type, &len1); in tools_char_read()
188 context->access_type, &len1); in tools_char_write()
224 context->access_type = arg; in tools_char_ioctl()
H A Dtools.h60 enum mlx5_fpga_access_type access_type);
63 enum mlx5_fpga_access_type access_type);
/freebsd-12.1/contrib/subversion/subversion/svnserve/
H A Dserver.h47 enum access_type { NO_ACCESS, READ_ACCESS, WRITE_ACCESS }; enum
73 enum access_type auth_access; /* access granted to authenticated users */
74 enum access_type anon_access; /* access granted to annonymous users */
231 enum access_type required,
H A Dcyrus_auth.c259 enum access_type required, in cyrus_auth_request()
H A Dserve.c521 static enum access_type
527 enum access_type result; in get_access()
553 static enum access_type
564 server_baton_t *b, enum access_type required, in send_mechs()
635 server_baton_t *b, enum access_type required, in auth()
678 server_baton_t *b, enum access_type required, in internal_auth_request()
711 server_baton_t *b, enum access_type required, in auth_request()
749 enum access_type req = (required & svn_authz_write) ? in lookup_access()
797 enum access_type req = (required & svn_authz_write) ? in must_have_access()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_descriptions.cc110 descr->access_type = kAccessTypeLeft; in GetAccessToHeapChunkInformation()
112 descr->access_type = kAccessTypeRight; in GetAccessToHeapChunkInformation()
118 descr->access_type = kAccessTypeInside; in GetAccessToHeapChunkInformation()
120 descr->access_type = kAccessTypeUnknown; in GetAccessToHeapChunkInformation()
132 switch (descr.access_type) { in PrintHeapChunkAccess()
H A Dasan_descriptions.h117 u32 access_type : 2; member
H A Dasan_report.cc385 hdesc1.chunk_access.access_type == kAccessTypeInside) in IsInvalidPointerPair()
387 hdesc2.chunk_access.access_type != kAccessTypeInside || in IsInvalidPointerPair()
/freebsd-12.1/sys/mips/mips/
H A Dtrap.c524 int access_type; in trap() local
769 access_type = emulate_unaligned_access(trapframe, mode); in trap()
770 if (access_type != 0) in trap()
1063 access_type = emulate_unaligned_access(trapframe, mode); in trap()
1064 if (access_type != 0) in trap()
1668 int access_type = 0; in emulate_unaligned_access() local
1687 access_type = mips_unaligned_load_store(frame, in emulate_unaligned_access()
1690 if (access_type) { in emulate_unaligned_access()
1703 access_name[access_type - 1], in emulate_unaligned_access()
1712 return access_type; in emulate_unaligned_access()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DASanRuntime.cpp164 addr_t access_type = in RetrieveReportData() local
186 dict->AddIntegerItem("access_type", access_type); in RetrieveReportData()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_report.cc199 const char *access_type = in ReportDeadlySignalImpl() local
203 Report("The signal is caused by a %s memory access.\n", access_type); in ReportDeadlySignalImpl()
/freebsd-12.1/contrib/gcc/cp/
H A Dsemantics.c1451 tree access_type = TREE_TYPE (object); in finish_non_static_data_member() local
1454 while (!DERIVED_FROM_P (lookup_context, access_type)) in finish_non_static_data_member()
1456 access_type = TYPE_CONTEXT (access_type); in finish_non_static_data_member()
1457 while (access_type && DECL_P (access_type)) in finish_non_static_data_member()
1458 access_type = DECL_CONTEXT (access_type); in finish_non_static_data_member()
1460 if (!access_type) in finish_non_static_data_member()
1477 perform_or_defer_access_check (TYPE_BINFO (access_type), decl, in finish_non_static_data_member()
H A DChangeLog-19963999 * cp-tree.h (access_type): Delete enum decl.
/freebsd-12.1/sys/dev/qlnx/qlnxe/
H A Dqlnx_ioctl.h155 uint32_t access_type; member
H A Dqlnx_ioctl.c445 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) { in qlnx_reg_rd_wr()
452 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) { in qlnx_reg_rd_wr()
/freebsd-12.1/sys/fs/udf/
H A Decma167-udf.h282 uint32_t access_type; member
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h277 lldb::AccessType access_type, const char *name,
309 lldb::AccessType access_type, const char *class_name,
975 clang::DeclContext *decl_ctx, lldb::AccessType access_type,
/freebsd-12.1/sys/amd64/vmm/intel/
H A Dvmx.c2105 int access_type, offset, allowed; in vmx_handle_apic_access() local
2111 access_type = APIC_ACCESS_TYPE(qual); in vmx_handle_apic_access()
2115 if (access_type == 0) { in vmx_handle_apic_access()
2130 } else if (access_type == 1) { in vmx_handle_apic_access()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_acl.c873 uint16_t access_type, uint64_t fuid, uint16_t entry_type) in zfs_set_ace() argument
878 aclp->z_ops.ace_type_set(acep, access_type); in zfs_set_ace()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp1471 AccessType access_type, in CreateRecordType() argument
1507 if (access_type != eAccessNone) in CreateRecordType()
1508 decl->setAccess(ConvertAccessTypeToAccessSpecifier(access_type)); in CreateRecordType()
1616 DeclContext *decl_ctx, lldb::AccessType access_type, const char *class_name, in CreateClassTemplateDecl() argument
1663 if (access_type != eAccessNone) in CreateClassTemplateDecl()
1665 ConvertAccessTypeToAccessSpecifier(access_type)); in CreateClassTemplateDecl()
9843 clang::DeclContext *decl_ctx, lldb::AccessType access_type, in ParseClassTemplateDecl() argument
9850 return CreateClassTemplateDecl(decl_ctx, access_type, in ParseClassTemplateDecl()
/freebsd-12.1/sys/dev/ixl/
H A Di40e_adminq_cmd.h399 __le16 access_type; member
H A Di40e_common.c3410 cmd_resp->access_type = CPU_TO_LE16(access); in i40e_aq_request_resource()
/freebsd-12.1/contrib/binutils/gas/
H A DChangeLog-92953761 * hash.c (hash_ask): rename argument `access' to `access_type'