HomeSort by relevance Sort by last modified time
    Searched refs:msg_cb (Results 1 - 3 of 3) sorted by null

  /external/adhd/cras/src/server/
cras_main_message.c 31 struct cras_main_msg_callback *msg_cb; local
33 DL_FOREACH(main_msg_callbacks, msg_cb) {
34 if (msg_cb->type == type) {
41 msg_cb = (struct cras_main_msg_callback *)calloc(1, sizeof(*msg_cb));
42 msg_cb->type = type;
43 msg_cb->callback = callback;
44 msg_cb->callback_data = callback_data;
46 DL_APPEND(main_msg_callbacks, msg_cb);
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 488 void (*msg_cb)(char *msg, size_t len))
564 * request. Use msg_cb to report this to the
566 if (msg_cb) {
572 msg_cb(reply, res);
727 void (*msg_cb)(char *msg, size_t len))
wpa_ctrl.h 422 * @msg_cb: Callback function for unsolicited messages or %NULL if not used
431 * msg_cb can be used to register a callback function that will be called for
436 * event messages. Alternatively to msg_cb, programs can register two control
443 void (*msg_cb)(char *msg, size_t len));

Completed in 272 milliseconds