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

/freebsd-11-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-11-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-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DASanRuntime.cpp91 int access_type;
101 t.access_type = __asan_get_report_access_type();
162 addr_t access_type = local
163 return_value_sp->GetValueForExpressionPath(".access_type")
184 dict->AddIntegerItem("access_type", access_type);
/freebsd-11-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-11-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.cpp391 hdesc1.chunk_access.access_type == kAccessTypeInside)
393 hdesc2.chunk_access.access_type != kAccessTypeInside ||
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_ioctl.h155 uint32_t access_type; member in struct:qlnx_reg_rd_wr
H A Dqlnx_ioctl.c445 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) {
452 if (reg_rd_wr->access_type == QLNX_REG_ACCESS_DIRECT) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp79 lldb::AccessType access_type = TranslateMemberAccess(access); local
84 m_ast_builder.ToCompilerType(method_qt), access_type, attrs.isVirtual(),
/freebsd-11-stable/sys/mips/mips/
H A Dtrap.c527 int access_type; local
776 access_type = emulate_unaligned_access(trapframe, mode);
777 if (access_type != 0)
1074 access_type = emulate_unaligned_access(trapframe, mode);
1075 if (access_type != 0)
1701 int access_type = 0; local
1720 access_type = mips_unaligned_load_store(frame,
1723 if (access_type) {
1736 access_name[access_type - 1],
1745 return access_type;
[all...]
/freebsd-11-stable/sys/fs/udf/
H A Decma167-udf.h280 uint32_t access_type; member in struct:part_desc
/freebsd-11-stable/contrib/gcc/cp/
H A Dsemantics.c1451 tree access_type = TREE_TYPE (object); local
1454 while (!DERIVED_FROM_P (lookup_context, access_type))
1456 access_type = TYPE_CONTEXT (access_type);
1457 while (access_type && DECL_P (access_type))
1458 access_type = DECL_CONTEXT (access_type);
1460 if (!access_type)
1477 perform_or_defer_access_check (TYPE_BINFO (access_type), dec
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTContext.h252 lldb::AccessType access_type,
286 lldb::AccessType access_type, const char *class_name,
896 clang::DeclContext *decl_ctx, lldb::AccessType access_type,
/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmx.c2117 int access_type, offset, allowed; local
2123 access_type = APIC_ACCESS_TYPE(qual);
2127 if (access_type == 0) {
2142 } else if (access_type == 1) {
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_acl.c873 uint16_t access_type, uint64_t fuid, uint16_t entry_type)
878 aclp->z_ops.ace_type_set(acep, access_type);
872 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-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp1178 AccessType access_type,
1240 if (access_type != eAccessNone)
1241 decl->setAccess(ConvertAccessTypeToAccessSpecifier(access_type));
1354 DeclContext *decl_ctx, lldb::AccessType access_type, const char *class_name,
1402 if (access_type != eAccessNone)
1404 ConvertAccessTypeToAccessSpecifier(access_type));
8774 clang::DeclContext *decl_ctx, lldb::AccessType access_type,
8781 return CreateClassTemplateDecl(decl_ctx, access_type,
1177 CreateRecordType(DeclContext *decl_ctx, AccessType access_type, llvm::StringRef name, int kind, LanguageType language, ClangASTMetadata *metadata, bool exports_symbols) argument
1353 CreateClassTemplateDecl( DeclContext *decl_ctx, lldb::AccessType access_type, const char *class_name, int kind, const TemplateParameterInfos &template_param_infos) argument
/freebsd-11-stable/sys/dev/ixl/
H A Di40e_adminq_cmd.h402 __le16 access_type; member in struct:i40e_aqc_request_resource
H A Di40e_common.c3425 cmd_resp->access_type = CPU_TO_LE16(access);

Completed in 323 milliseconds