Home
last modified time | relevance | path

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

12

/freebsd/stand/lua/
H A Dmenu.lua41 entry_type = core.MENU_RETURN,
139 entry_type = core.MENU_ENTRY,
163 entry_type = core.MENU_ENTRY,
178 entry_type = core.MENU_ENTRY,
189 entry_type = core.MENU_ENTRY,
199 entry_type = core.MENU_ENTRY,
209 entry_type = core.MENU_ENTRY,
270 entry_type = core.MENU_ENTRY,
288 entry_type = core.MENU_ENTRY,
300 entry_type = core.MENU_ENTRY,
[all …]
/freebsd/bin/setfacl/
H A Dmerge.c42 acl_entry_type_t entry_type; in merge_user_group() local
63 if (acl_get_entry_type_np(*entry, &entry_type)) in merge_user_group()
65 if (acl_set_entry_type_np(*entry_new, entry_type)) in merge_user_group()
91 acl_entry_type_t entry_type, entry_type_new; in merge_acl() local
143 if (acl_get_entry_type_np(entry, &entry_type)) in merge_acl()
149 if (entry_type != entry_type_new) in merge_acl()
174 if (acl_get_entry_type_np(entry, &entry_type)) in merge_acl()
177 if (acl_set_entry_type_np(entry_new, entry_type)) in merge_acl()
/freebsd/crypto/openssl/crypto/ct/
H A Dct_vfy.c47 if (sct->entry_type == CT_LOG_ENTRY_TYPE_NOT_SET) in sct_ctx_update()
49 if (sct->entry_type == CT_LOG_ENTRY_TYPE_PRECERT && sctx->ihash == NULL) in sct_ctx_update()
56 s2n(sct->entry_type, p); in sct_ctx_update()
61 if (sct->entry_type == CT_LOG_ENTRY_TYPE_X509) { in sct_ctx_update()
102 sct->entry_type == CT_LOG_ENTRY_TYPE_NOT_SET || in SCT_CTX_verify()
103 (sct->entry_type == CT_LOG_ENTRY_TYPE_PRECERT && sctx->ihash == NULL)) { in SCT_CTX_verify()
H A Dct_sct.c31 sct->entry_type = CT_LOG_ENTRY_TYPE_NOT_SET; in SCT_new()
64 int SCT_set_log_entry_type(SCT *sct, ct_log_entry_type_t entry_type) in SCT_set_log_entry_type() argument
68 switch (entry_type) { in SCT_set_log_entry_type()
71 sct->entry_type = entry_type; in SCT_set_log_entry_type()
202 return sct->entry_type; in SCT_get_log_entry_type()
H A Dct_b64.c64 ct_log_entry_type_t entry_type, uint64_t timestamp, in SCT_new_from_base64() argument
118 if (!SCT_set_log_entry_type(sct, entry_type)) in SCT_new_from_base64()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c210 uint16_t entry_type; in zfs_ace_fuid_get_who() local
215 if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP || in zfs_ace_fuid_get_who()
246 if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP || in zfs_ace_fuid_set_who()
256 uint16_t entry_type; in zfs_ace_fuid_size() local
266 entry_type = in zfs_ace_fuid_size()
515 uint16_t entry_type; in zfs_acl_valid_ace_type() local
525 entry_type == ACE_EVERYONE || entry_type == 0 || in zfs_acl_valid_ace_type()
668 if (entry_type != ACE_OWNER && entry_type != OWNING_GROUP && in zfs_copy_ace_2_fuid()
887 int entry_type; in zfs_mode_compute() local
912 if (entry_type == ACE_OWNER || (entry_type == 0 && in zfs_mode_compute()
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c210 uint16_t entry_type; in zfs_ace_fuid_get_who() local
215 if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP || in zfs_ace_fuid_get_who()
246 if (entry_type == ACE_OWNER || entry_type == OWNING_GROUP || in zfs_ace_fuid_set_who()
256 uint16_t entry_type; in zfs_ace_fuid_size() local
266 entry_type = in zfs_ace_fuid_size()
513 uint16_t entry_type; in zfs_acl_valid_ace_type() local
523 entry_type == ACE_EVERYONE || entry_type == 0 || in zfs_acl_valid_ace_type()
666 if (entry_type != ACE_OWNER && entry_type != OWNING_GROUP && in zfs_copy_ace_2_fuid()
905 int entry_type; in zfs_mode_compute() local
930 if (entry_type == ACE_OWNER || (entry_type == 0 && in zfs_mode_compute()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h62 using entry_type = EntryT; member
64 std::vector<entry_type> Entries;
66 explicit ListStream(std::vector<entry_type> Entries = {})
267 llvm::MinidumpYAML::MemoryListStream::entry_type)
269 llvm::MinidumpYAML::ModuleListStream::entry_type)
271 llvm::MinidumpYAML::ThreadListStream::entry_type)
274 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::MemoryListStream::entry_type)
275 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::ModuleListStream::entry_type)
276 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::ThreadListStream::entry_type)
/freebsd/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py1479 entry_type = ""
1487 if not entry_type:
1496 if not entry_type:
1497 entry_type = token
1531 if entry_type == "bytes":
1536 elif entry_type == "int" and not fixed_length:
1543 res = STRUCT_REF_RE.match(entry_type)
1809 def EntryVarBytes(entry_type, name, tag): argument
1813 def EntryInt(entry_type, name, tag, bits=32): argument
1817 def EntryString(entry_type, name, tag): argument
[all …]
/freebsd/contrib/libevent/
H A Devent_rpcgen.py1479 entry_type = ""
1487 if not entry_type:
1496 if not entry_type:
1497 entry_type = token
1531 if entry_type == "bytes":
1536 elif entry_type == "int" and not fixed_length:
1543 res = STRUCT_REF_RE.match(entry_type)
1809 def EntryVarBytes(entry_type, name, tag): argument
1813 def EntryInt(entry_type, name, tag, bits=32): argument
1817 def EntryString(entry_type, name, tag): argument
[all …]
/freebsd/sys/dev/irdma/
H A Dirdma_hmc.c203 pa = (sd_entry->entry_type == IRDMA_SD_TYPE_PAGED) ? in irdma_hmc_sd_grp()
206 irdma_set_sd_entry(pa, i, sd_entry->entry_type, in irdma_hmc_sd_grp()
209 irdma_clr_sd_entry(i, sd_entry->entry_type, in irdma_hmc_sd_grp()
300 info->entry_type, in irdma_sc_create_hmc_obj()
306 if (sd_entry->entry_type == IRDMA_SD_TYPE_PAGED && in irdma_sc_create_hmc_obj()
341 switch (sd_entry->entry_type) { in irdma_sc_create_hmc_obj()
388 mem = (sd_entry->entry_type == IRDMA_SD_TYPE_PAGED) ? in irdma_finish_del_sd_reg()
562 if (sd_entry->entry_type == IRDMA_SD_TYPE_DIRECT) in irdma_add_sd_table_entry()
602 if (hmc_info->sd_table.sd_entry[sd_idx].entry_type != in irdma_add_pd_table_entry()
626 pd_entry->bp.entry_type = IRDMA_SD_TYPE_PAGED; in irdma_add_pd_table_entry()
[all …]
H A Dirdma_hmc.h91 enum irdma_sd_entry_type entry_type; member
113 enum irdma_sd_entry_type entry_type; member
162 enum irdma_sd_entry_type entry_type; member
/freebsd/sys/dev/ixl/
H A Di40e_hmc.c109 hmc_info->sd_table.sd_entry[sd_index].entry_type = type; in i40e_add_sd_table_entry()
115 if (I40E_SD_TYPE_DIRECT == sd_entry->entry_type) in i40e_add_sd_table_entry()
165 hmc_info->sd_table.sd_entry[sd_idx].entry_type) in i40e_add_pd_table_entry()
188 pd_entry->bp.entry_type = I40E_SD_TYPE_PAGED; in i40e_add_pd_table_entry()
243 if (I40E_SD_TYPE_PAGED != sd_entry->entry_type) { in i40e_remove_pd_bp()
H A Di40e_lan_hmc.c384 info->entry_type, in i40e_create_lan_hmc_object()
389 if (I40E_SD_TYPE_PAGED == sd_entry->entry_type) { in i40e_create_lan_hmc_object()
419 switch (sd_entry->entry_type) { in i40e_create_lan_hmc_object()
423 j, sd_entry->entry_type); in i40e_create_lan_hmc_object()
427 j, sd_entry->entry_type); in i40e_create_lan_hmc_object()
441 switch (sd_entry->entry_type) { in i40e_create_lan_hmc_object()
490 info.entry_type = I40E_SD_TYPE_DIRECT; in i40e_configure_lan_hmc()
502 info.entry_type = I40E_SD_TYPE_PAGED; in i40e_configure_lan_hmc()
616 info->hmc_info->sd_table.sd_entry[sd_idx].entry_type) in i40e_delete_lan_hmc_object()
643 switch (info->hmc_info->sd_table.sd_entry[i].entry_type) { in i40e_delete_lan_hmc_object()
[all …]
H A Di40e_hmc.h63 enum i40e_sd_entry_type entry_type; member
86 enum i40e_sd_entry_type entry_type; member
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_byteswap.c60 uint16_t entry_type; in zfs_ace_byteswap() local
89 entry_type = zacep->z_hdr.z_flags & ACE_TYPE_FLAGS; in zfs_ace_byteswap()
100 entry_type = acep->a_flags & ACE_TYPE_FLAGS; in zfs_ace_byteswap()
102 switch (entry_type) { in zfs_ace_byteswap()
/freebsd/lib/libc/posix1e/
H A Dacl_set.c228 acl_set_entry_type_np(acl_entry_t entry_d, acl_entry_type_t entry_type) in acl_set_entry_type_np() argument
241 switch (entry_type) { in acl_set_entry_type_np()
246 entry_d->ae_entry_type = entry_type; in acl_set_entry_type_np()
H A Dacl_to_text_nfs4.c113 acl_entry_type_t entry_type; in format_entry_type() local
115 error = acl_get_entry_type_np(entry, &entry_type); in format_entry_type()
119 switch (entry_type) { in format_entry_type()
/freebsd/usr.sbin/nscd/
H A Dcachelib.c227 if (entry->params->entry_type == CET_COMMON) { in destroy_cache_entry()
295 if (entry->params->entry_type == CET_COMMON) { in clear_cache_entry()
429 if (entry->params->entry_type == CET_COMMON) { in flush_cache_entry()
554 switch (params->entry_type) in register_cache_entry()
708 assert(entry->params->entry_type == CET_COMMON); in cache_read()
817 assert(entry->params->entry_type == CET_COMMON); in cache_write()
930 assert(entry->params->entry_type == CET_MULTIPART); in open_cache_mp_write_session()
966 assert(ws->parent_entry->params->entry_type == CET_MULTIPART); in cache_mp_write()
1000 assert(ws->parent_entry->params->entry_type == CET_MULTIPART); in abandon_cache_mp_write_session()
1058 assert(entry->params->entry_type == CET_MULTIPART); in open_cache_mp_read_session()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_hexagon.S33 .macro CALL_PATCHED_FUNC entry_type
43 r1 = \entry_type
/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_eltorito.c256 entry->entry_type = ET_ENTRY_VE; in cd9660_boot_setup_validation_entry()
291 default_entry->entry_type = ET_ENTRY_IE; in cd9660_boot_setup_default_entry()
319 entry->entry_type = ET_ENTRY_SH; in cd9660_boot_setup_section_head()
339 entry->entry_type = ET_ENTRY_SE; in cd9660_boot_setup_section_entry()
511 next->entry_type == ET_ENTRY_SE) in cd9660_setup_boot()
520 if (next->entry_type == ET_ENTRY_SH) in cd9660_setup_boot()
650 e->entry_type); in cd9660_write_boot()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp276 void yaml::MappingTraits<ModuleListStream::entry_type>::mapping( in mapping()
277 IO &IO, ModuleListStream::entry_type &M) { in mapping()
301 void yaml::MappingTraits<MemoryListStream::entry_type>::mapping( in mapping()
302 IO &IO, MemoryListStream::entry_type &Range) { in mapping()
359 void yaml::MappingTraits<ThreadListStream::entry_type>::mapping( in mapping()
360 IO &IO, ThreadListStream::entry_type &T) { in mapping()
488 std::vector<MemoryListStream::entry_type> Ranges; in create()
501 std::vector<ModuleListStream::entry_type> Modules; in create()
537 std::vector<ThreadListStream::entry_type> Threads; in create()
H A DMinidumpEmitter.cpp139 static void layout(BlobAllocator &File, MemoryListStream::entry_type &Range) { in layout()
143 static void layout(BlobAllocator &File, ModuleListStream::entry_type &M) { in layout()
150 static void layout(BlobAllocator &File, ThreadListStream::entry_type &T) { in layout()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.cpp34 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
35 auto it = m_auxv_entries.find(static_cast<uint64_t>(entry_type)); in GetAuxValue()
H A DAuxVector.h65 std::optional<uint64_t> GetAuxValue(enum EntryType entry_type) const;

12