| /expo/packages/expo-dev-launcher/bundle/functions/ |
| H A D | restoreUserAsync.ts | 1 import { setSessionAsync } from '../apiClient'; 10 await setSessionAsync(session);
|
| /expo/packages/expo-dev-launcher/bundle/screens/__tests__/ |
| H A D | UserProfileScreen.test.tsx | 5 import { setSessionAsync } from '../../native-modules/DevLauncherAuth'; 14 const mockSetSessionAsync = setSessionAsync as jest.Mock; 75 expect(setSessionAsync).toHaveBeenCalledTimes(0); 79 expect(setSessionAsync).toHaveBeenCalledTimes(1); 80 expect(setSessionAsync).toHaveBeenCalledWith(sessionSecret); 101 expect(setSessionAsync).toHaveBeenCalledTimes(0); 104 expect(setSessionAsync).toHaveBeenCalledTimes(1); 105 expect(setSessionAsync).toHaveBeenCalledWith(fakeSessionSecret); 173 expect(setSessionAsync).toHaveBeenCalledTimes(1); 174 expect(setSessionAsync).toHaveBeenLastCalledWith(null);
|
| /expo/packages/@expo/cli/src/api/user/__tests__/ |
| H A D | UserSettings-test.ts | 59 describe(UserSettings.setSessionAsync, () => { 61 await UserSettings.setSessionAsync(); 66 await UserSettings.setSessionAsync(authStub);
|
| /expo/home/kernel/ |
| H A D | Kernel.ts | 48 export async function setSessionAsync(session: KernelSession): Promise<void> { function 49 await NativeKernel.setSessionAsync(session);
|
| H A D | MockKernel.ts | 57 async setSessionAsync(session: object): Promise<void> {
|
| /expo/packages/@expo/cli/src/api/user/ |
| H A D | user.ts | 71 await UserSettings.setSessionAsync({ 85 await UserSettings.setSessionAsync({ 97 UserSettings.setSessionAsync(undefined),
|
| H A D | UserSettings.ts | 40 async function setSessionAsync(sessionData?: SessionData): Promise<void> { function 77 setSessionAsync,
|
| /expo/packages/expo-dev-launcher/bundle/ |
| H A D | apiClient.ts | 65 export async function setSessionAsync(session: string | null) { function 66 await DevLauncherAuth.setSessionAsync(session);
|
| /expo/packages/expo-dev-launcher/bundle/native-modules/__mocks__/ |
| H A D | DevLauncherAuth.ts | 2 export const setSessionAsync = jest.fn().mockResolvedValue(null); constant
|
| /expo/packages/expo-dev-launcher/bundle/__mocks__/ |
| H A D | apiClient.ts | 10 export const setSessionAsync = jest.fn().mockResolvedValue(null); constant
|
| /expo/packages/expo-dev-launcher/bundle/native-modules/ |
| H A D | DevLauncherAuth.ts | 116 export async function setSessionAsync(session: string): Promise<void> { function 117 return await DevLauncherAuth.setSessionAsync(session);
|
| /expo/packages/expo-dev-launcher/bundle/providers/ |
| H A D | UserContextProvider.tsx | 3 import { setSessionAsync } from '../apiClient'; 45 await setSessionAsync(sessionSecret); 82 return await setSessionAsync(null);
|
| /expo/packages/jest-expo/src/preset/ |
| H A D | internalExpoModules.js | 5 setSessionAsync: { type: 'function', functionType: 'async' }, property
|
| /expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/modules/ |
| H A D | DevLauncherAuth.kt | 23 fun setSessionAsync(session: String?, promise: Promise) { in setSessionAsync() method
|
| /expo/home/storage/ |
| H A D | LocalStorage.ts | 66 await Kernel.setSessionAsync(session as any);
|
| /expo/android/expoview/src/main/java/host/exp/exponent/modules/ |
| H A D | ExponentKernelModule.kt | 87 fun setSessionAsync(session: ReadableMap, promise: Promise) { in setSessionAsync() method
|
| /expo/ios/Exponent/Kernel/DevSupport/ |
| H A D | EXHomeModule.m | 254 RCT_REMAP_METHOD(setSessionAsync, category 255 setSessionAsync:(NSDictionary *)session
|
| /expo/packages/expo-dev-launcher/ios/ |
| H A D | main.jsbundle | 1188 …setSessionAsync=function(t){return j.apply(this,arguments)},e.websiteOrigin=void 0;var n=t(r(d[1])… 1189 …setSessionAsync=function(n){return L.apply(this,arguments)};var t=n(r(d[1])),u=r(d[2]),s=r(d[3]),o… 1218 …tion*(){var n=yield(0,o.restoreSessionAsync)();if(n)return yield(0,t.setSessionAsync)(n),yield(0,u… 1248 …setSessionAsync)(n);var u=yield(0,c.getUserProfileAsync)();k()&&(S(u),D(u.accounts[0].id))}else yi…
|
| /expo/packages/expo-dev-launcher/android/src/debug/assets/ |
| H A D | expo_dev_launcher_android.bundle | 1189 …setSessionAsync=function(t){return j.apply(this,arguments)},e.websiteOrigin=void 0;var n=t(r(d[1])… 1190 …setSessionAsync=function(n){return L.apply(this,arguments)};var t=n(r(d[1])),u=r(d[2]),s=r(d[3]),o… 1219 …tion*(){var n=yield(0,o.restoreSessionAsync)();if(n)return yield(0,t.setSessionAsync)(n),yield(0,u… 1249 …setSessionAsync)(n);var u=yield(0,c.getUserProfileAsync)();k()&&(S(u),D(u.accounts[0].id))}else yi…
|