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

12

/freebsd-13-stable/sys/dev/mlx5/mlx5_fpga_tools/
H A Dtools.h60 enum mlx5_fpga_access_type access_type);
63 enum mlx5_fpga_access_type access_type);
H A Dmlx5fpga_tools_char.c45 enum mlx5_fpga_access_type access_type; member in struct:tools_context
62 context->access_type = MLX5_FPGA_ACCESS_TYPE_DONTCARE;
69 u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt)
76 ret = mlx5_fpga_mem_read(tdev->fdev, count, address, buf, access_type);
90 u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt)
97 ret = mlx5_fpga_mem_write(tdev->fdev, count, address, buf, access_type);
153 context->access_type, &len1);
188 context->access_type, &len1);
224 context->access_type = arg;
68 mem_read(struct mlx5_fpga_tools_dev *tdev, void *buf, size_t count, u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt) argument
89 mem_write(struct mlx5_fpga_tools_dev *tdev, void *buf, size_t count, u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt) argument
/freebsd-13-stable/contrib/subversion/subversion/svnserve/
H A Dserver.h48 enum access_type { NO_ACCESS, READ_ACCESS, WRITE_ACCESS };
74 enum access_type auth_access; /* access granted to authenticated users */
75 enum access_type anon_access; /* access granted to annonymous users */
232 enum access_type required,
47 enum access_type { NO_ACCESS, READ_ACCESS, WRITE_ACCESS }; enum
H A Dcyrus_auth.c259 enum access_type required,
H A Dserve.c539 static enum access_type
545 enum access_type result;
571 static enum access_type
582 server_baton_t *b, enum access_type required,
653 server_baton_t *b, enum access_type required,
696 server_baton_t *b, enum access_type required,
729 server_baton_t *b, enum access_type required,
767 enum access_type req = (required & svn_authz_write) ?
815 enum access_type req = (required & svn_authz_write) ?
/freebsd-13-stable/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_sdk.c196 void *buf, enum mlx5_fpga_access_type access_type)
200 if (access_type == MLX5_FPGA_ACCESS_TYPE_DONTCARE)
201 access_type = fdev->shell_conn ? MLX5_FPGA_ACCESS_TYPE_RDMA :
205 size, (uintmax_t)addr, access_type ? "RDMA" : "I2C");
207 switch (access_type) {
219 mlx5_fpga_warn(fdev, "Unexpected read access_type %u\n",
220 access_type);
229 void *buf, enum mlx5_fpga_access_type access_type)
233 if (access_type == MLX5_FPGA_ACCESS_TYPE_DONTCARE)
234 access_type
195 mlx5_fpga_mem_read(struct mlx5_fpga_device *fdev, size_t size, u64 addr, void *buf, enum mlx5_fpga_access_type access_type) argument
228 mlx5_fpga_mem_write(struct mlx5_fpga_device *fdev, size_t size, u64 addr, void *buf, enum mlx5_fpga_access_type access_type) argument
[all...]
H A Dsdk.h251 * @access_type: Method for reading
261 void *buf, enum mlx5_fpga_access_type access_type);
269 * @access_type: Method for writing
279 void *buf, enum mlx5_fpga_access_type access_type);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp93 int access_type;
103 t.access_type = __asan_get_report_access_type();
164 addr_t access_type = local
165 return_value_sp->GetValueForExpressionPath(".access_type")
186 dict->AddIntegerItem("access_type", access_type);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_report.cpp206 const char *access_type = local
210 Report("The signal is caused by a %s memory access.\n", access_type);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp109 descr->access_type = kAccessTypeLeft;
111 descr->access_type = kAccessTypeRight;
117 descr->access_type = kAccessTypeInside;
119 descr->access_type = kAccessTypeUnknown;
131 switch (descr.access_type) {
H A Dasan_descriptions.h116 u32 access_type : 2; member in struct:__asan::ChunkAccess
H A Dasan_report.cpp394 hdesc1.chunk_access.access_type == kAccessTypeInside)
396 hdesc2.chunk_access.access_type != kAccessTypeInside ||
/freebsd-13-stable/sys/mips/mips/
H A Dtrap.c520 int access_type; local
765 access_type = emulate_unaligned_access(trapframe, mode);
766 if (access_type != 0)
1055 access_type = emulate_unaligned_access(trapframe, mode);
1056 if (access_type != 0)
1656 int access_type = 0; local
1674 access_type = mips_unaligned_load_store(frame,
1677 if (access_type) {
1690 access_name[access_type - 1],
1699 return access_type;
[all...]
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_ioctl.h154 uint32_t access_type; member in struct:qlnx_reg_rd_wr
H A Dqlnx_ioctl.c438 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) {
445 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp82 lldb::AccessType access_type = TranslateMemberAccess(access); local
87 m_ast_builder.ToCompilerType(method_qt), access_type, attrs.isVirtual(),
/freebsd-13-stable/sys/fs/udf/
H A Decma167-udf.h282 uint32_t access_type; member in struct:part_desc
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h326 lldb::AccessType access_type,
362 lldb::AccessType access_type, const char *class_name,
1023 lldb::AccessType access_type, const char *parent_name, int tag_decl_kind,
H A DTypeSystemClang.cpp1282 AccessType access_type, llvm::StringRef name, int kind,
1344 if (access_type != eAccessNone)
1345 decl->setAccess(ConvertAccessTypeToAccessSpecifier(access_type));
1464 lldb::AccessType access_type, const char *class_name, int kind,
1514 if (access_type != eAccessNone)
1516 ConvertAccessTypeToAccessSpecifier(access_type));
9057 lldb::AccessType access_type, const char *parent_name, int tag_decl_kind,
9063 return CreateClassTemplateDecl(decl_ctx, owning_module, access_type,
1280 CreateRecordType( clang::DeclContext *decl_ctx, OptionalClangModuleID owning_module, AccessType access_type, llvm::StringRef name, int kind, LanguageType language, ClangASTMetadata *metadata, bool exports_symbols) argument
1462 CreateClassTemplateDecl( DeclContext *decl_ctx, OptionalClangModuleID owning_module, lldb::AccessType access_type, const char *class_name, int kind, const TemplateParameterInfos &template_param_infos) argument
/freebsd-13-stable/sys/amd64/vmm/intel/
H A Dvmx.c2205 int access_type, offset, allowed; local
2211 access_type = APIC_ACCESS_TYPE(qual);
2215 if (access_type == 0) {
2230 } else if (access_type == 1) {
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c868 uint16_t access_type, uint64_t fuid, uint16_t entry_type)
873 aclp->z_ops->ace_type_set(acep, access_type);
867 zfs_set_ace(zfs_acl_t *aclp, void *acep, uint32_t access_mask, uint16_t access_type, uint64_t fuid, uint16_t entry_type) argument
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c868 uint16_t access_type, uint64_t fuid, uint16_t entry_type)
873 aclp->z_ops->ace_type_set(acep, access_type);
867 zfs_set_ace(zfs_acl_t *aclp, void *acep, uint32_t access_mask, uint16_t access_type, uint64_t fuid, uint16_t entry_type) argument
/freebsd-13-stable/sys/dev/ice/
H A Dice_adminq_cmd.h100 __le16 access_type; member in struct:ice_aqc_req_res
H A Dice_common.c1519 cmd_resp->access_type = CPU_TO_LE16(access);
/freebsd-13-stable/sys/dev/ixl/
H A Di40e_adminq_cmd.h407 __le16 access_type; member in struct:i40e_aqc_request_resource

Completed in 287 milliseconds

12