/freebsd/sys/kern/ |
H A D | kern_osd.c | 56 LIST_HEAD(, osd) osd_list; /* (l) */ 66 SYSCTL_INT(_debug, OID_AUTO, osd, CTLFLAG_RWTUN, &osd_debug, 0, "OSD debug level"); 76 static void do_osd_del(u_int type, struct osd *osd, u_int slot, 152 struct osd *osd, *tosd; in osd_deregister() local 165 LIST_FOREACH_SAFE(osd, &osdm[type].osd_list, osd_next, tosd) in osd_deregister() 166 do_osd_del(type, osd, slot, 1); in osd_deregister() 185 osd_set(u_int type, struct osd *osd, u_int slot, void *value) in osd_set() argument 188 return (osd_set_reserved(type, osd, slot, NULL, value)); in osd_set() 202 osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv, in osd_set_reserved() argument 213 if (slot > osd->osd_nslots) { in osd_set_reserved() [all …]
|
H A D | kern_khelp.c | 59 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd); 148 khelp_init_osd(uint32_t classes, struct osd *hosd) in khelp_init_osd() 185 khelp_destroy_osd(struct osd *hosd) in khelp_destroy_osd() 209 khelp_remove_osd(struct helper *h, struct osd *hosd) in khelp_remove_osd() 229 khelp_get_osd(struct osd *hosd, int32_t id) in khelp_get_osd()
|
H A D | kern_hhook.c | 93 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd) in hhook_run_hooks()
|
/freebsd/sys/sys/ |
H A D | osd.h | 39 struct osd { struct 42 LIST_ENTRY(osd) osd_next; /* (l) */ 61 int osd_set(u_int type, struct osd *osd, u_int slot, void *value); 63 int osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv, 66 void *osd_get(u_int type, struct osd *osd, u_int slot); 67 void *osd_get_unlocked(u_int type, struct osd *osd, u_int slot); 68 void osd_del(u_int type, struct osd *osd, u_int slot); 71 void osd_exit(u_int type, struct osd *osd);
|
H A D | khelp.h | 54 struct osd; 65 int khelp_init_osd(uint32_t classes, struct osd *hosd); 67 int khelp_destroy_osd(struct osd *hosd); 69 void * khelp_get_osd(struct osd *hosd, int32_t id);
|
H A D | hhook.h | 72 struct osd; 76 void *ctx_data, void *hdata, struct osd *hosd); 108 void hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd);
|
H A D | socketvar.h | 131 struct osd osd; /* Object Specific extensions */ member
|
H A D | jail.h | 183 struct osd pr_osd; /* (p) additional data */
|
/freebsd/contrib/ofed/opensm/complib/ |
H A D | cl_thread.c | 66 p_thread->osd.state = CL_UNINITIALIZED; in cl_thread_construct() 84 ret = pthread_create(&p_thread->osd.id, NULL, in cl_thread_init() 90 p_thread->osd.state = CL_INITIALIZED; in cl_thread_init() 98 CL_ASSERT(cl_is_state_valid(p_thread->osd.state)); in cl_thread_destroy() 100 if (p_thread->osd.state == CL_INITIALIZED) in cl_thread_destroy() 101 pthread_join(p_thread->osd.id, NULL); in cl_thread_destroy() 103 p_thread->osd.state = CL_UNINITIALIZED; in cl_thread_destroy() 136 CL_ASSERT(p_thread->osd.state == CL_INITIALIZED); in cl_is_current_thread() 139 return (pthread_equal(current, p_thread->osd.id)); in cl_is_current_thread()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | LinkerScript.cpp | 705 for (OutputDesc *osd : overwriteSections) { in processSectionCommands() 706 OutputSection *osec = &osd->osec; in processSectionCommands() 708 !map.try_emplace(CachedHashStringRef(osec->name), osd).second) in processSectionCommands() 712 if (auto *osd = dyn_cast<OutputDesc>(base)) { in processSectionCommands() local 713 OutputSection *osec = &osd->osec; in processSectionCommands() 726 for (OutputDesc *osd : overwriteSections) in processSectionCommands() 727 if (osd->osec.partition == 1 && osd->osec.sectionIndex == UINT32_MAX) in processSectionCommands() 728 sectionCommands.push_back(osd); in processSectionCommands() 761 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in findByName() local 762 if (osd->osec.name == name) in findByName() [all …]
|
H A D | Writer.cpp | 297 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in findSection() local 298 if (osd->osec.name == name && osd->osec.partition == partition) in findSection() 299 return &osd->osec; in findSection() 500 auto *osd = dyn_cast<OutputDesc>(cmd); in addSectionSymbols() local 501 if (!osd) in addSectionSymbols() 503 OutputSection &osec = osd->osec; in addSectionSymbols() 905 auto *osd = dyn_cast<OutputDesc>(b); in getRankProximity() local 906 return (osd && osd->osec.hasInputSections) in getRankProximity() 907 ? llvm::countl_zero(a->sortRank ^ osd->osec.sortRank) in getRankProximity() 975 auto *osd = dyn_cast<OutputDesc>(cmd); in findOrphanPos() local [all …]
|
H A D | ScriptParser.cpp | 585 OutputDesc *osd = readOverlaySectionDescription(); in readOverlay() local 586 osd->osec.addrExpr = addrExpr; in readOverlay() 588 osd->osec.lmaExpr = [=] { return prev->getLMA() + prev->size; }; in readOverlay() 590 osd->osec.lmaExpr = lmaExpr; in readOverlay() 593 osd->osec.usedInExpression = true; in readOverlay() 594 addrExpr = [=]() -> ExprValue { return {&osd->osec, false, 0, ""}; }; in readOverlay() 596 v.push_back(osd); in readOverlay() 597 prev = &osd->osec; in readOverlay() 644 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in readSections() local 645 osd->osec.relro = false; in readSections() [all …]
|
H A D | ICF.cpp | 581 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in run() local 582 for (SectionCommand *subCmd : osd->osec.commands) in run()
|
/freebsd/sys/dev/ixl/ |
H A D | ixl_pf_main.c | 2027 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in ixl_update_stats_counters() local 2032 &osd->crc_errors, &nsd->crc_errors); in ixl_update_stats_counters() 2035 &osd->illegal_bytes, &nsd->illegal_bytes); in ixl_update_stats_counters() 2038 &osd->eth.rx_bytes, &nsd->eth.rx_bytes); in ixl_update_stats_counters() 2041 &osd->eth.tx_bytes, &nsd->eth.tx_bytes); in ixl_update_stats_counters() 2044 &osd->eth.rx_discards, in ixl_update_stats_counters() 2048 &osd->eth.rx_unicast, in ixl_update_stats_counters() 2052 &osd->eth.tx_unicast, in ixl_update_stats_counters() 2056 &osd->eth.rx_multicast, in ixl_update_stats_counters() 2060 &osd->eth.tx_multicast, in ixl_update_stats_counters() [all …]
|
/freebsd/sys/netinet/khelp/ |
H A D | h_ertt.c | 71 void *udata, void *ctx_data, void *hdata, struct osd *hosd); 73 void *udata, void *ctx_data, void *hdata, struct osd *hosd); 195 void *ctx_data, void *hdata, struct osd *hosd) in ertt_packet_measurement_hook() 430 void *ctx_data, void *hdata, struct osd *hosd) in ertt_add_tx_segment_info_hook()
|
/freebsd/contrib/ofed/opensm/include/complib/ |
H A D | cl_thread.h | 105 cl_thread_osd_t osd; member
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | zte,vou.txt | 25 "osd" 86 reg-names = "osd", "timing_ctrl",
|
/freebsd/share/man/man9/ |
H A D | Makefile | 249 osd.9 \ 1779 MLINKS+=osd.9 osd_call.9 \ 1780 osd.9 osd_del.9 \ 1781 osd.9 osd_deregister.9 \ 1782 osd.9 osd_exit.9 \ 1783 osd.9 osd_free_reserved.9 \ 1784 osd.9 osd_get.9 \ 1785 osd.9 osd_register.9 \ 1786 osd.9 osd_reserve.9 \ 1787 osd.9 osd_set.9 \ [all …]
|
/freebsd/contrib/ofed/opensm/libvendor/ |
H A D | osm_vendor_ts.c | 189 pthread_cancel(p_vend->smi_bind.poller.osd.id); in osm_vendor_destroy() 190 pthread_cancel(p_vend->gsi_bind.poller.osd.id); in osm_vendor_destroy()
|
/freebsd/sys/net/ |
H A D | if_enc.c | 237 void *hdata, struct osd *hosd) in enc_hhook()
|
/freebsd/sys/dev/hpt27xx/ |
H A D | README | 176 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
/freebsd/sys/dev/hptmv/ |
H A D | readme.txt | 181 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
/freebsd/tools/build/test-includes/ |
H A D | badfiles.inc | 90 sys/osd.h \
|
/freebsd/sys/dev/hptnr/ |
H A D | README | 179 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
/freebsd/sys/contrib/device-tree/src/arm64/zte/ |
H A D | zx296718.dtsi | 499 reg-names = "osd", "timing_ctrl",
|