Lines Matching full:path
88 char *path;
100 static struct input_device *find_device_by_path(GSList *list, const char *path)
107 if (!strcmp(idev->path, path))
162 g_free(idev->path);
426 emit_property_changed(idev->conn, idev->path, INPUT_DEVICE_INTERFACE,
790 info("Input: disconnect %s", idev->path);
818 emit_property_changed(idev->conn, idev->path, INPUT_DEVICE_INTERFACE,
1011 debug("Unregistered interface %s on path %s", INPUT_DEVICE_INTERFACE,
1012 idev->path);
1069 struct btd_device *device, const char *path,
1080 idev->path = g_strdup(path);
1089 if (g_dbus_register_interface(conn, idev->path, INPUT_DEVICE_INTERFACE,
1092 error("Failed to register interface %s on path %s",
1093 INPUT_DEVICE_INTERFACE, path);
1098 debug("Registered interface %s on path %s",
1099 INPUT_DEVICE_INTERFACE, idev->path);
1120 const char *path, const bdaddr_t *src,
1127 idev = find_device_by_path(devices, path);
1129 idev = input_device_new(conn, device, path, src, dst, handle);
1145 const char *path, bdaddr_t *src, bdaddr_t *dst,
1151 idev = find_device_by_path(devices, path);
1153 idev = input_device_new(conn, device, path, src, dst, 0);
1188 int input_device_unregister(const char *path, const char *uuid)
1193 idev = find_device_by_path(devices, path);
1211 g_dbus_unregister_interface(idev->conn, path, INPUT_DEVICE_INTERFACE);