/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | MultiplexConsumer.cpp | 279 : Consumers(std::move(C)) { in MultiplexConsumer() 284 for (auto &Consumer : Consumers) { in MultiplexConsumer() 304 for (auto &Consumer : Consumers) in Initialize() 310 for (auto &Consumer : Consumers) in HandleTopLevelDecl() 316 for (auto &Consumer : Consumers) in HandleInlineFunctionDefinition() 321 for (auto &Consumer : Consumers) in HandleCXXStaticMemberVarInstantiation() 326 for (auto &Consumer : Consumers) in HandleInterestingDecl() 331 for (auto &Consumer : Consumers) in HandleTranslationUnit() 336 for (auto &Consumer : Consumers) in HandleTagDeclDefinition() 341 for (auto &Consumer : Consumers) in HandleTagDeclRequiredDefinition() [all …]
|
H A D | FrontendActions.cpp | 139 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateASTConsumer() local 140 Consumers.push_back(std::make_unique<PCHGenerator>( in CreateASTConsumer() 146 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator( in CreateASTConsumer() 149 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); in CreateASTConsumer() 198 std::vector<std::unique_ptr<ASTConsumer>> Consumers; in CreateMultiplexConsumer() local 200 Consumers.push_back(std::make_unique<PCHGenerator>( in CreateMultiplexConsumer() 211 Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator( in CreateMultiplexConsumer() 213 return Consumers; in CreateMultiplexConsumer() 219 std::vector<std::unique_ptr<ASTConsumer>> Consumers = in CreateASTConsumer() local 221 if (Consumers.empty()) in CreateASTConsumer() [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestMaxConsumers.java | 61 Consumer[] consumers = new Consumer[n]; in main() local 64 consumers[i] = new LocalConsumer(); in main() 65 consumers[i].open(); in main() 68 consumers[i].close(); in main() 71 consumers[i] = new LocalConsumer(); in main() 72 consumers[i].open(); in main() 93 consumers[i].close(); in main()
|
/freebsd/sys/contrib/device-tree/Bindings/interconnect/ |
H A D | interconnect.txt | 5 providers/consumers properties. 16 consumers, such as in the case where two network-on-chip fabrics interface 37 = interconnect consumers = 39 The interconnect consumers are device nodes which dynamically express their 55 order as the interconnects property. Consumers drivers will use
|
/freebsd/sys/contrib/ck/include/ |
H A D | ck_stack.h | 51 * Stack producer operation safe for multiple unique producers and multiple consumers. 74 * Stack producer operation for multiple unique producers and multiple consumers. 93 * Stack consumer operation safe for multiple unique producers and multiple consumers. 121 * Stack production operation for multiple unique producers and multiple consumers. 164 * Stack producer operation safe for multiple producers and multiple consumers. 178 * Stack producer operation safe for multiple producers and multiple consumers. 192 * Stack consumer operation safe for multiple producers and multiple consumers. 270 * Stack producer operation safe with no concurrent consumers. 288 * Stack producer operation for single producer and no concurrent consumers.
|
/freebsd/sys/geom/ |
H A D | geom_subr.c | 329 LIST_FOREACH(cp, &pp->consumers, consumers) { in g_retaste_event() 504 if (LIST_EMPTY(&pp->consumers)) in g_wither_washer() 510 if (LIST_EMPTY(&pp->consumers)) in g_wither_washer() 586 LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, next_cp) { in g_new_provider_event() 596 LIST_FOREACH(cp, &pp->consumers, consumers) in g_new_provider_event() 634 LIST_INIT(&pp->consumers); in g_new_providerf() 708 LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, cp2) { in g_resize_provider_event() 726 LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, cp2) { in g_resize_provider_event() 739 LIST_FOREACH(cp, &pp->consumers, consumers) in g_resize_provider_event() 804 KASSERT(LIST_EMPTY(&pp->consumers), in g_destroy_provider() [all …]
|
H A D | geom_event.c | 132 * Tell all consumers of the change. in g_attr_changed_event() 134 LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, next_cp) { in g_attr_changed_event() 201 * Tell all consumers the bad news. in g_orphan_register() 204 LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, cp2) { in g_orphan_register() 219 if (LIST_EMPTY(&pp->consumers) && wf) in g_orphan_register() 224 cp = LIST_FIRST(&pp->consumers); in g_orphan_register()
|
/freebsd/share/man/man9/ |
H A D | crypto.9 | 29 It permits in-kernel consumers to encrypt and decrypt data 39 Consumers allocate sessions to describe a transform as discussed in 41 Consumers then allocate request objects to describe each transformation 47 consumers. 53 Since the consumers may not be associated with a process, drivers may
|
H A D | eventtimers.9 | 89 .Bl -tag -width "Consumers" 92 .It Consumers 103 provide APIs for event timer drivers and consumers. 132 Used by consumers to predict set of possible frequencies that could be 228 It releases the event timer for other consumers use.
|
H A D | g_geom.9 | 80 creating any providers or consumers related to this geom (not all are required): 85 Pointer to a function used for consumers spoiling. 102 If you are planning to use consumers in your geom you must set fields 125 The geom cannot possess any consumers.
|
H A D | alq.9 | 146 Consumers of this API may wish to pass 165 to provide backwards compatibility to consumers that have not been updated to 229 to provide backwards compatibility to consumers that have not been updated to 302 to provide backwards compatibility to consumers that have not been updated to 336 to provide backwards compatibility to consumers that have not been updated to
|
H A D | g_wither_geom.9 | 30 .Nd "destroy geom and related providers and consumers when you get a chance" 47 If there are no more providers nor consumers, the geom will be 60 because the access counts of the geom's consumers and providers may not be 0.
|
H A D | mac.9 | 60 Both consumers of the API (normal kernel services) and security modules 71 .Ss API for Consumers 79 .Ss Locking for Consumers 80 Consumers of the MAC API must be aware of the locking requirements for
|
/freebsd/share/man/man4/ |
H A D | geom.4 | 172 A geom has zero or more consumers. 178 A provider can have zero or more consumers attached. 187 A geom with no attached consumers has rank=1. 189 A geom with attached consumers has a rank one higher than the 190 highest rank of the geoms of the providers its consumers are 242 consumers attached to the provider will receive notification about 254 immediate change in the topology: any attached consumers are still 327 all attached consumers are told about this and geoms like
|
/freebsd/sys/netpfil/ipfw/ |
H A D | ip_fw_iface.c | 258 /* Assume all consumers have been already detached */ in destroy_iface() 329 TAILQ_INIT(&iif->consumers); in ipfw_iface_ref() 365 * Adds @ic to the list of iif interface consumers. 379 TAILQ_INSERT_TAIL(&iif->consumers, ic, next); in ipfw_iface_add_notify() 396 TAILQ_REMOVE(&iif->consumers, ic, next); in ipfw_iface_del_notify() 433 TAILQ_FOREACH(ic, &iif->consumers, next) in handle_ifattach() 450 TAILQ_FOREACH(ic, &iif->consumers, next) in handle_ifdetach()
|
/freebsd/sys/contrib/device-tree/Bindings/reset/ |
H A D | reset.txt | 20 A word on where to place reset signal consumers in device tree: It is possible 45 = Reset consumers = 56 the resets property. Consumers drivers will use reset-names to
|
/freebsd/sys/contrib/device-tree/Bindings/mux/ |
H A D | mux-controller.txt | 10 A mux controller provides a number of states to its consumers, and the state 15 Consumers 18 Mux controller consumers should specify a list of mux controllers that they 68 * Two consumers (one for an ADC line and one for an i2c bus) of
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | secure.txt | 4 "Normal" and "Secure". Most devicetree consumers (including the Linux 6 world or the Secure world. However some devicetree consumers are 30 world consumers (like kernels that run entirely in Secure) to simply
|
/freebsd/usr.bin/fstat/ |
H A D | fuser.c | 95 STAILQ_HEAD(, consumer) consumers; 154 STAILQ_INIT(&reqfile->consumers); in addfile() 250 STAILQ_FOREACH(consumer, &reqfiles[i].consumers, next) { in do_fuser() 314 STAILQ_FOREACH(cons, &reqfiles[i].consumers, next) in dofiles() 335 STAILQ_INSERT_TAIL(&reqfiles[i].consumers, cons, next); in dofiles()
|
/freebsd/sys/vm/ |
H A D | vm_radix.c | 36 * be decided by the library consumers. At the same time, consumers 91 * every node allocation, resulting into deadlocks for consumers already
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | nvidia,tegra210-car.txt | 15 In clock consumers, this cell represents the clock ID exposed by the 19 In clock consumers, this cell represents the bit number in the CAR's
|
H A D | nvidia,tegra30-car.txt | 15 In clock consumers, this cell represents the clock ID exposed by the 19 In clock consumers, this cell represents the bit number in the CAR's
|
H A D | nvidia,tegra114-car.txt | 15 In clock consumers, this cell represents the clock ID exposed by the 19 In clock consumers, this cell represents the bit number in the CAR's
|
H A D | nvidia,tegra20-car.txt | 15 In clock consumers, this cell represents the clock ID exposed by the 19 In clock consumers, this cell represents the bit number in the CAR's
|
/freebsd/share/mk/ |
H A D | src.lua.mk | 4 # This file provides any necessary assistance for consumers of Lua in the base 35 # Otherwise, consumers will have to settle for a PATH search and PATH being
|