HomeSort by: relevance | last modified time | path
    Searched defs:callback (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /src/tests/usr.bin/xlint/lint1/
msg_311.c 8 typedef int (*callback)(void); typedef in typeref:typename:int (*)(void)
10 callback
msg_311.c 8 typedef int (*callback)(void); typedef in typeref:typename:int (*)(void)
10 callback
  /src/sys/external/bsd/drm2/linux/
linux_stop_machine.c 46 int (*callback)(void *); member in struct:stop_machine
70 /* It's time. Call the callback. */
71 S->callback(S->cookie);
81 stop_machine(int (*callback)(void *), void *cookie, const struct kcpuset *cpus)
87 S->callback = callback;
linux_stop_machine.c 46 int (*callback)(void *); member in struct:stop_machine
70 /* It's time. Call the callback. */
71 S->callback(S->cookie);
81 stop_machine(int (*callback)(void *), void *cookie, const struct kcpuset *cpus)
87 S->callback = callback;
  /src/sys/dev/i2c/
i2c_calls.h 54 * the i2c_attach_args and invoking the callback for each one.
57 * If the callback returns true, then enumeration continues. If
58 * the callback returns false, enumeration is stopped.
67 bool (*callback)(device_t, struct i2c_enumerate_devices_args *); member in struct:i2c_enumerate_devices_args
i2c_calls.h 54 * the i2c_attach_args and invoking the callback for each one.
57 * If the callback returns true, then enumeration continues. If
58 * the callback returns false, enumeration is stopped.
67 bool (*callback)(device_t, struct i2c_enumerate_devices_args *); member in struct:i2c_enumerate_devices_args
  /src/sys/sys/
device_calls.h 51 * Enumerates the direct children of a device, invoking the callback for
52 * each one. The callback is passed the devhandle_t corresponding to the
53 * child device, as well as a user-supplied argument. If the callback
54 * returns true, then enumeration continues. If the callback returns false,
58 bool (*callback)(device_t, devhandle_t, void *); member in struct:device_enumerate_children_args
device_calls.h 51 * Enumerates the direct children of a device, invoking the callback for
52 * each one. The callback is passed the devhandle_t corresponding to the
53 * child device, as well as a user-supplied argument. If the callback
54 * returns true, then enumeration continues. If the callback returns false,
58 bool (*callback)(device_t, devhandle_t, void *); member in struct:device_enumerate_children_args
  /src/sys/external/bsd/common/include/linux/
rcupdate.h 70 void (*callback)(struct rcu_head *); member in union:rcu_head::__anon2a18c58d010a
rcupdate.h 70 void (*callback)(struct rcu_head *); member in union:rcu_head::__anon2a18c58d010a
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_linux.cc 107 StopTheWorldCallback callback; member in struct:__lsan::DoStopTheWorldParam
121 StopTheWorld(param->callback, param->argument);
132 // callback in the parent thread.
133 void DoStopTheWorld(StopTheWorldCallback callback, void *argument) {
134 DoStopTheWorldParam param = {callback, argument};
lsan_common_linux.cc 107 StopTheWorldCallback callback; member in struct:__lsan::DoStopTheWorldParam
121 StopTheWorld(param->callback, param->argument);
132 // callback in the parent thread.
133 void DoStopTheWorld(StopTheWorldCallback callback, void *argument) {
134 DoStopTheWorldParam param = {callback, argument};
  /src/sys/arch/hpcarm/dev/
nbppcon.c 54 struct callback { struct in struct:nbppcon_softc
162 struct callback *cb;
nbppcon.c 54 struct callback { struct in struct:nbppcon_softc
162 struct callback *cb;
  /src/sys/external/bsd/common/linux/
linux_rcu.c 55 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
57 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
59 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
184 * call_rcu(head, callback)
186 * Arrange to call callback(head) after any pending RCU read
190 call_rcu(struct rcu_head *head, void (*callback)(struct rcu_head *))
193 head->rcuh_u.callback = callback;
199 SDT_PROBE2(sdt, linux, rcu, call__queue, head, callback);
269 void (*callback)(struct rcu_head *) local in function:gc_thread
    [all...]
linux_rcu.c 55 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
57 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
59 "struct rcu_head *"/*head*/, "void (*)(struct rcu_head *)"/*callback*/);
184 * call_rcu(head, callback)
186 * Arrange to call callback(head) after any pending RCU read
190 call_rcu(struct rcu_head *head, void (*callback)(struct rcu_head *))
193 head->rcuh_u.callback = callback;
199 SDT_PROBE2(sdt, linux, rcu, call__queue, head, callback);
269 void (*callback)(struct rcu_head *) local in function:gc_thread
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_mac.cc 50 StopTheWorldCallback callback; member in struct:__sanitizer::RunThreadArgs
74 run_args->callback(suspended_threads_list, run_args->argument);
82 void StopTheWorld(StopTheWorldCallback callback, void *argument) {
83 struct RunThreadArgs arg = {callback, argument};
sanitizer_stoptheworld_mac.cc 50 StopTheWorldCallback callback; member in struct:__sanitizer::RunThreadArgs
74 run_args->callback(suspended_threads_list, run_args->argument);
82 void StopTheWorld(StopTheWorldCallback callback, void *argument) {
83 struct RunThreadArgs arg = {callback, argument};
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/
qmgr.h 17 * corresponding message can be matched. Upon receiving the message, a callback
22 * @callback: callback to call upon receiving matching message
23 * @completion: completion to signal after callback is called
34 nvkm_falcon_qmgr_callback callback; member in struct:nvkm_falcon_qmgr_seq
qmgr.h 17 * corresponding message can be matched. Upon receiving the message, a callback
22 * @callback: callback to call upon receiving matching message
23 * @completion: completion to signal after callback is called
34 nvkm_falcon_qmgr_callback callback; member in struct:nvkm_falcon_qmgr_seq
  /src/sys/external/bsd/drm2/include/linux/
dmi.h 66 int (*callback)(const struct dmi_system_id *); member in struct:dmi_system_id
dmi.h 66 int (*callback)(const struct dmi_system_id *); member in struct:dmi_system_id
  /src/sys/dev/spi/
spi_calls.h 54 * the spi_attach_args and invoking the callback for each one.
58 * arguments passed to the callback.
60 * If the callback returns true, then enumeration continues. If
61 * the callback returns false, enumeration is stopped.
70 bool (*callback)(device_t, struct spi_enumerate_devices_args *); member in struct:spi_enumerate_devices_args
spi_calls.h 54 * the spi_attach_args and invoking the callback for each one.
58 * arguments passed to the callback.
60 * If the callback returns true, then enumeration continues. If
61 * the callback returns false, enumeration is stopped.
70 bool (*callback)(device_t, struct spi_enumerate_devices_args *); member in struct:spi_enumerate_devices_args
  /src/sbin/umbctl/
umbctl.c 318 int (*callback)(char const *, member in struct:_umbctl_set::__anonaf06ad560108
342 if(callbacks[j].callback(ifname, umbp,

Completed in 34 milliseconds

1 2 3 4