Home
last modified time | relevance | path

Searched refs:getAttachedDevicesAsync (Results 1 – 9 of 9) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DgetDevices-test.ts3 import { getAttachedDevicesAsync } from '../adb';
8 getAttachedDevicesAsync: jest.fn(),
15 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([]);
18 expect(getAttachedDevicesAsync).toBeCalled();
H A DadbReverse-test.ts3 import { getAttachedDevicesAsync, getServer } from '../adb';
14 getAttachedDevicesAsync: jest.fn(),
24 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([
52 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([
74 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([
89 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([
107 asMock(getAttachedDevicesAsync).mockResolvedValueOnce([
H A Demulator-test.ts10 getAttachedDevicesAsync: jest.fn(),
39 asMock(ADB.getAttachedDevicesAsync).mockResolvedValue([]);
52 asMock(ADB.getAttachedDevicesAsync)
H A Dadb-test.ts6 getAttachedDevicesAsync,
166 describe(getAttachedDevicesAsync, () => {
186 const devices = await getAttachedDevicesAsync();
/expo/packages/@expo/cli/src/start/platforms/android/
H A DadbReverse.ts2 import { adbArgs, Device, getAttachedDevicesAsync, getServer, logUnauthorized } from './adb';
25 const devices = await getAttachedDevicesAsync();
40 const devices = await getAttachedDevicesAsync();
H A DgetDevices.ts1 import { Device, getAttachedDevicesAsync } from './adb';
7 const bootedDevices = await getAttachedDevicesAsync();
H A Demulator.ts6 import { Device, getAttachedDevicesAsync, isBootAnimationCompleteAsync } from './adb';
74 const bootedDevices = await getAttachedDevicesAsync();
H A Dadb.ts214 export async function getAttachedDevicesAsync(): Promise<Device[]> { function
297 const devices = await getAttachedDevicesAsync();
/expo/tools/src/commands/
H A DClientInstall.ts49 const devices = await Android.getAttachedDevicesAsync();