| /freebsd-14.2/sys/kern/ |
| H A D | kern_osd.c | 77 static void do_osd_del(u_int type, struct osd *osd, u_int slot, 153 struct osd *osd, *tosd; in osd_deregister() local 186 osd_set(u_int type, struct osd *osd, u_int slot, void *value) in osd_set() argument 203 osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv, in osd_set_reserved() argument 282 osd_get(u_int type, struct osd *osd, u_int slot) in osd_get() argument 306 osd_del(u_int type, struct osd *osd, u_int slot) in osd_del() argument 316 do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) in do_osd_del() argument 350 osd->osd_slots = NULL; in do_osd_del() 351 osd->osd_nslots = 0; in do_osd_del() 354 osd->osd_slots = realloc(osd->osd_slots, in do_osd_del() [all …]
|
| H A D | kern_khelp.c | 60 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd); 149 khelp_init_osd(uint32_t classes, struct osd *hosd) in khelp_init_osd() 186 khelp_destroy_osd(struct osd *hosd) in khelp_destroy_osd() 210 khelp_remove_osd(struct helper *h, struct osd *hosd) in khelp_remove_osd() 230 khelp_get_osd(struct osd *hosd, int32_t id) in khelp_get_osd()
|
| H A D | kern_hhook.c | 94 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd) in hhook_run_hooks()
|
| /freebsd-14.2/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_del(u_int type, struct osd *osd, u_int slot); 70 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 | 133 struct osd osd; /* Object Specific extensions */ member
|
| H A D | jail.h | 183 struct osd pr_osd; /* (p) additional data */
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | LinkerScript.cpp | 658 OutputSection *osec = &osd->osec; in processSectionCommands() 679 if (osd->osec.partition == 1 && osd->osec.sectionIndex == UINT32_MAX) in processSectionCommands() 680 sectionCommands.push_back(osd); in processSectionCommands() 714 if (osd->osec.name == name) in findByName() 715 return &osd->osec; in findByName() 721 osd->osec.recordSection(isec); in createSection() 722 return osd; in createSection() 755 return osd; in addInputSec() 825 v.push_back(&osd->osec); in addInputSec() 826 return osd; in addInputSec() [all …]
|
| H A D | Writer.cpp | 318 if (osd->osec.name == name && osd->osec.partition == partition) in findSection() 319 return &osd->osec; in findSection() 787 if (!osd) in addSectionSymbols() 789 OutputSection &osec = osd->osec; in addSectionSymbols() 1178 auto *osd = dyn_cast<OutputDesc>(b); in getRankProximity() local 1179 return (osd && osd->osec.hasInputSections) in getRankProximity() 1256 return osd && osd->osec.hasInputSections; in findOrphanPos() 1505 sortSection(osd->osec, order); in sortInputSections() 1522 osd->osec.sortRank = getSectionRank(osd->osec); in sortSections() 1769 OutputSection *osec = &osd->osec; in finalizeAddressDependentContent() [all …]
|
| H A D | ScriptParser.cpp | 555 osd->osec.addrExpr = addrExpr; in readOverlay() 559 osd->osec.lmaExpr = lmaExpr; in readOverlay() 562 osd->osec.usedInExpression = true; in readOverlay() 565 v.push_back(osd); in readOverlay() 566 prev = &osd->osec; in readOverlay() 613 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in readSections() local 614 osd->osec.relro = false; in readSections() 908 osd->osec.inOverlay = true; in readOverlaySectionDescription() 915 osd->osec.commands.push_back( in readOverlaySectionDescription() 918 osd->osec.phdrs = readOutputSectionPhdrs(); in readOverlaySectionDescription() [all …]
|
| H A D | ICF.cpp | 573 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in run() local 574 for (SectionCommand *subCmd : osd->osec.commands) in run()
|
| /freebsd-14.2/share/examples/kld/khelp/ |
| H A D | h_example.c | 58 void *ctx_data, void *hdata, struct osd *hosd); 131 void *hdata, struct osd *hosd) in example_hook()
|
| /freebsd-14.2/sys/dev/ixl/ |
| H A D | ixl_pf_main.c | 2122 &osd->eth.rx_discards, in ixl_update_stats_counters() 2127 &osd->eth.rx_unicast, in ixl_update_stats_counters() 2132 &osd->eth.tx_unicast, in ixl_update_stats_counters() 2137 &osd->eth.rx_multicast, in ixl_update_stats_counters() 2142 &osd->eth.tx_multicast, in ixl_update_stats_counters() 2147 &osd->eth.rx_broadcast, in ixl_update_stats_counters() 2152 &osd->eth.tx_broadcast, in ixl_update_stats_counters() 2157 &osd->tx_dropped_link_down, in ixl_update_stats_counters() 2161 &osd->mac_local_faults, in ixl_update_stats_counters() 2165 &osd->mac_remote_faults, in ixl_update_stats_counters() [all …]
|
| /freebsd-14.2/sys/netinet/khelp/ |
| H A D | h_ertt.c | 72 void *udata, void *ctx_data, void *hdata, struct osd *hosd); 74 void *udata, void *ctx_data, void *hdata, struct osd *hosd); 196 void *ctx_data, void *hdata, struct osd *hosd) in ertt_packet_measurement_hook() 431 void *ctx_data, void *hdata, struct osd *hosd) in ertt_add_tx_segment_info_hook()
|
| /freebsd-14.2/contrib/ofed/opensm/include/complib/ |
| H A D | cl_thread.h | 105 cl_thread_osd_t osd; member
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/display/ |
| H A D | zte,vou.txt | 25 "osd" 86 reg-names = "osd", "timing_ctrl",
|
| /freebsd-14.2/share/man/man9/ |
| H A D | Makefile | 248 osd.9 \ 1743 MLINKS+=osd.9 osd_call.9 \ 1744 osd.9 osd_del.9 \ 1745 osd.9 osd_deregister.9 \ 1746 osd.9 osd_exit.9 \ 1747 osd.9 osd_free_reserved.9 \ 1748 osd.9 osd_get.9 \ 1749 osd.9 osd_register.9 \ 1750 osd.9 osd_reserve.9 \ 1751 osd.9 osd_set.9 \ [all …]
|
| /freebsd-14.2/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-14.2/sys/net/ |
| H A D | if_enc.c | 237 void *hdata, struct osd *hosd) in enc_hhook()
|
| /freebsd-14.2/sys/dev/hpt27xx/ |
| H A D | README | 176 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
| /freebsd-14.2/tools/build/test-includes/ |
| H A D | badfiles.inc | 91 sys/osd.h \
|
| /freebsd-14.2/sys/dev/hptmv/ |
| H A D | readme.txt | 181 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
| /freebsd-14.2/sys/dev/hptnr/ |
| H A D | README | 179 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|