Home
last modified time | relevance | path

Searched refs:delete_devices (Results 1 – 16 of 16) sorted by relevance

/dports/multimedia/libv4l/linux-5.13-rc2/Documentation/ide/
H A Dwarm-plug-howto.rst7 # echo -n "1" > /sys/class/ide_port/idex/delete_devices
16 no other active references to devices before doing "delete_devices" step,
/dports/multimedia/v4l-utils/linux-5.13-rc2/Documentation/ide/
H A Dwarm-plug-howto.rst7 # echo -n "1" > /sys/class/ide_port/idex/delete_devices
16 no other active references to devices before doing "delete_devices" step,
/dports/multimedia/v4l_compat/linux-5.13-rc2/Documentation/ide/
H A Dwarm-plug-howto.rst7 # echo -n "1" > /sys/class/ide_port/idex/delete_devices
16 no other active references to devices before doing "delete_devices" step,
/dports/net-im/py-matrix-synapse/synapse-1.50.2/tests/federation/
H A Dtest_federation_sender.py318 self.hs.get_device_handler().delete_devices(u1, ["D1", "D2", "D3"])
350 self.hs.get_device_handler().delete_devices(u1, ["D1", "D2", "D3"])
390 self.hs.get_device_handler().delete_devices(u1, ["D1", "D2", "D3"])
440 self.hs.get_device_handler().delete_devices(u1, ["D1", "D2", "D3"])
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/ide/
H A Dide-sysfs.c107 static DEVICE_ATTR(delete_devices, S_IWUSR, NULL, store_delete_devices);
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/ide/
H A Dide-sysfs.c107 static DEVICE_ATTR(delete_devices, S_IWUSR, NULL, store_delete_devices);
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/ide/
H A Dide-sysfs.c107 static DEVICE_ATTR(delete_devices, S_IWUSR, NULL, store_delete_devices);
/dports/net-im/py-matrix-synapse/synapse-1.50.2/tests/rest/client/
H A Dtest_auth.py215 def delete_devices(self, expected_response: int, body: JsonDict) -> FakeChannel: member in UIAuthTests
303 channel = self.delete_devices(
314 self.delete_devices(
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/handlers/
H A Ddevice.py400 await self.delete_devices(user_id, device_ids)
402 async def delete_devices(self, user_id: str, device_ids: List[str]) -> None: member in DeviceHandler
411 await self.store.delete_devices(user_id, device_ids)
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/rest/admin/
H A Ddevices.py166 await self.device_handler.delete_devices(
/dports/net-im/mtxclient/mtxclient-0.6.0/tests/
H A Ddevice.cpp63 alice->delete_devices( in TEST()
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/rest/client/
H A Ddevices.py96 await self.device_handler.delete_devices(
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/storage/databases/main/
H A Ddevices.py1292 await self.delete_devices(user_id, [device_id])
1294 async def delete_devices(self, user_id: str, device_ids: List[str]) -> None: member in DeviceStore
/dports/net-im/mtxclient/mtxclient-0.6.0/include/mtxclient/http/
H A Dclient.hpp613 void delete_devices(const std::vector<std::string> &device_ids,
/dports/net-im/py-matrix-synapse/synapse-1.50.2/docs/admin_api/
H A Duser_admin_api.md822 POST /_synapse/admin/v2/users/<user_id>/delete_devices
/dports/net-im/mtxclient/mtxclient-0.6.0/lib/http/
H A Dclient.cpp1173 Client::delete_devices(const std::vector<std::string> &device_ids, in delete_devices() function in Client