Home
last modified time | relevance | path

Searched refs:mesh_tx (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.6/net/bluetooth/
Dmgmt_util.c319 void (*cb)(struct mgmt_mesh_tx *mesh_tx, void *data), in mgmt_mesh_foreach() argument
322 struct mgmt_mesh_tx *mesh_tx, *tmp; in mgmt_mesh_foreach() local
324 list_for_each_entry_safe(mesh_tx, tmp, &hdev->mgmt_pending, list) { in mgmt_mesh_foreach()
325 if (!sk || mesh_tx->sk == sk) in mgmt_mesh_foreach()
326 cb(mesh_tx, data); in mgmt_mesh_foreach()
332 struct mgmt_mesh_tx *mesh_tx; in mgmt_mesh_next() local
337 list_for_each_entry(mesh_tx, &hdev->mesh_pending, list) { in mgmt_mesh_next()
338 if (!sk || mesh_tx->sk == sk) in mgmt_mesh_next()
339 return mesh_tx; in mgmt_mesh_next()
347 struct mgmt_mesh_tx *mesh_tx; in mgmt_mesh_find() local
[all …]
Dmgmt_util.h73 void (*cb)(struct mgmt_mesh_tx *mesh_tx, void *data),
79 void mgmt_mesh_remove(struct mgmt_mesh_tx *mesh_tx);
Dmgmt.c1076 struct mgmt_mesh_tx *mesh_tx, bool silent) in mesh_send_complete() argument
1078 u8 handle = mesh_tx->handle; in mesh_send_complete()
1084 mgmt_mesh_remove(mesh_tx); in mesh_send_complete()
1089 struct mgmt_mesh_tx *mesh_tx; in mesh_send_done_sync() local
1093 mesh_tx = mgmt_mesh_next(hdev, NULL); in mesh_send_done_sync()
1095 if (mesh_tx) in mesh_send_done_sync()
1096 mesh_send_complete(hdev, mesh_tx, false); in mesh_send_done_sync()
1105 struct mgmt_mesh_tx *mesh_tx = mgmt_mesh_next(hdev, NULL); in mesh_next() local
1107 if (!mesh_tx) in mesh_next()
1110 err = hci_cmd_sync_queue(hdev, mesh_send_sync, mesh_tx, in mesh_next()
[all …]