Lines Matching refs:path

64     char *path;
163 pa_assert_se(m = dbus_message_new_method_call(t->owner, t->path, "org.ofono.HandsfreeAudioCard", method));
247 static void hf_audio_agent_card_removed(pa_bluetooth_backend *backend, const char *path);
256 hf_audio_agent_card_removed(card->backend, card->path);
261 static struct hf_audio_card *hf_audio_card_new(pa_bluetooth_backend *backend, const char *path) {
264 card->path = pa_xstrdup(path);
284 pa_xfree(card->path);
361 pa_log_info("Transport %s already released", t->path);
371 static void hf_audio_agent_card_found(pa_bluetooth_backend *backend, const char *path, DBusMessageIter *props_i) {
379 pa_assert(path);
382 pa_log_debug("New HF card found: %s", path);
384 card = hf_audio_card_new(backend, path);
396 pa_log_error("Invalid properties for %s: expected 's', received '%c'", path, c);
420 pa_log_error("Device doesn't exist for %s", path);
424 card->transport = pa_bluetooth_transport_new(d, backend->ofono_bus_id, path, p, NULL, 0);
431 pa_hashmap_put(backend->cards, card->path, card);
439 static void hf_audio_agent_card_removed(pa_bluetooth_backend *backend, const char *path) {
443 pa_assert(path);
445 pa_log_debug("HF card removed: %s", path);
447 card = pa_hashmap_remove(backend->cards, path);
477 const char *path;
480 dbus_message_iter_get_basic(&struct_i, &path);
485 hf_audio_agent_card_found(backend, path, &props_i);
549 const char *path = HF_AUDIO_AGENT_PATH;
559 pa_assert_se(dbus_message_append_args(m, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE, &pcodecs, ncodecs,
567 const char *path = HF_AUDIO_AGENT_PATH;
574 pa_assert_se(dbus_message_append_args(m, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID));
678 const char *sender, *path;
693 DBUS_TYPE_OBJECT_PATH, &path,
701 card = pa_hashmap_get(backend->cards, path);
704 pa_log_warn("New audio connection invalid arguments (path=%s fd=%d, codec=%d)", path, fd, codec);
711 pa_log_debug("New audio connection on card %s (fd=%d, codec=%d)", path, fd, codec);
732 const char *path, *interface, *member;
736 path = dbus_message_get_path(m);
740 if (!pa_streq(path, HF_AUDIO_AGENT_PATH))
743 pa_log_debug("dbus: path=%s, interface=%s, member=%s", path, interface, member);