Home
last modified time | relevance | path

Searched refs:os (Results 1 – 25 of 1290) sorted by relevance

12345678910>>...52

/expo/packages/@expo/package-manager/src/ios/__tests__/
H A DCocoaPodsPackageManager-test.ts3 import os from 'os';
39 'Using Expo modules' + os.EOL +
45 '' + os.EOL +
46 ' In Podfile:' + os.EOL +
48 '' + os.EOL +
49 '' + os.EOL +
64 '' + os.EOL +
65 ' In Podfile:' + os.EOL +
67 '' + os.EOL +
68 '' + os.EOL +
[all …]
/expo/packages/@expo/cli/src/utils/analytics/__tests__/
H A DrudderstackClient-test.ts1 import os from 'os';
55 expect(getContext().os).toMatchObject({
56 name: knownPlatformNames[os.platform()] || os.platform(),
57 version: os.release(),
63 type: knownPlatformNames[os.platform()] || os.platform(),
64 model: knownPlatformNames[os.platform()] || os.platform(),
/expo/packages/@expo/cli/__mocks__/
H A Dos.ts1 const os = jest.requireActual('os'); constant
3 os.homedir = jest.fn(() => '/home');
4 os.tmpdir = jest.fn(() => '/tmp');
6 module.exports = os;
H A Dtempy.ts2 import os from 'os';
7 return path.join(os.tmpdir(), crypto.randomBytes(16).toString('hex'));
/expo/packages/@expo/prebuild-config/__mocks__/
H A Dos.ts1 const os = jest.requireActual('os'); constant
3 os.homedir = jest.fn(() => '/home');
5 module.exports = os;
/expo/packages/@expo/config/__mocks__/
H A Dos.ts1 const os = jest.requireActual('os'); constant
3 os.homedir = jest.fn(() => '/home');
5 module.exports = os;
/expo/packages/@expo/cli/src/start/server/middleware/inspector/
H A DLaunchBrowser.ts1 import os from 'os';
46 if (os.platform() === 'darwin') {
49 if (os.platform() === 'win32' || IS_WSL) {
52 if (os.platform() === 'linux') {
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/channels/
H A DNotificationChannelGroupManagerModule.java5 import android.os.Bundle;
48 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupAsync()
59 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupsAsync()
74 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelGroupAsync()
85 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelGroupAsync()
H A DNotificationChannelManagerModule.java5 import android.os.Build;
6 import android.os.Bundle;
54 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelAsync()
64 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelsAsync()
79 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelAsync()
90 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelAsync()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/channels/
H A DNotificationChannelGroupManagerModule.java5 import android.os.Bundle;
48 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupAsync()
59 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupsAsync()
74 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelGroupAsync()
85 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelGroupAsync()
H A DNotificationChannelManagerModule.java5 import android.os.Build;
6 import android.os.Bundle;
54 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelAsync()
64 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelsAsync()
79 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelAsync()
90 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelAsync()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/channels/
H A DNotificationChannelGroupManagerModule.java5 import android.os.Bundle;
48 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupAsync()
59 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelGroupsAsync()
74 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelGroupAsync()
85 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelGroupAsync()
H A DNotificationChannelManagerModule.java5 import android.os.Build;
6 import android.os.Bundle;
54 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelAsync()
64 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in getNotificationChannelsAsync()
79 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in setNotificationChannelAsync()
90 if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { in deleteNotificationChannelAsync()
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidSdk.ts3 import os from 'os';
12 darwin: path.join(os.homedir(), 'Library', 'Android', 'sdk'),
13 linux: path.join(os.homedir(), 'Android', 'sdk'),
14 win32: path.join(os.homedir(), 'AppData', 'Local', 'Android', 'Sdk'),
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/
H A DUtils.kt3 import android.os.Bundle
4 import android.os.Handler
5 import android.os.ResultReceiver
/expo/packages/create-expo-module/src/
H A Dtelemetry.ts6 import os from 'os';
66 os: { name: PLATFORM_NAMES[os.platform()] ?? os.platform(), version: os.release() },
/expo/packages/@expo/cli/src/utils/analytics/
H A DrudderstackClient.ts3 import os from 'os';
126 const platform = PLATFORM_TO_ANALYTICS_PLATFORM[os.platform()] || os.platform(); constant
128 os: { name: platform, version: os.release() },
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/viewshot/
H A DViewShot.java11 import android.os.Build;
12 import android.os.Handler;
17 import android.os.Build;
18 import android.os.Handler;
19 import android.os.HandlerThread;
20 import android.os.Looper;
285 final int length = os.size(); in saveToRawFileOnDevice()
297 captureView(view, os); in saveToDataUriString()
300 final int length = os.size(); in saveToDataUriString()
319 final int length = os.size(); in saveToBase64String()
[all …]
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/viewshot/
H A DViewShot.java11 import android.os.Build;
12 import android.os.Handler;
17 import android.os.Build;
18 import android.os.Handler;
19 import android.os.HandlerThread;
20 import android.os.Looper;
285 final int length = os.size(); in saveToRawFileOnDevice()
297 captureView(view, os); in saveToDataUriString()
300 final int length = os.size(); in saveToDataUriString()
319 final int length = os.size(); in saveToBase64String()
[all …]
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/viewshot/
H A DViewShot.java11 import android.os.Build;
12 import android.os.Handler;
17 import android.os.Looper;
242 outputBuffer = os.innerBuffer(); in saveToRawFileOnDevice()
243 final int length = os.size(); in saveToRawFileOnDevice()
255 captureView(view, os); in saveToDataUriString()
257 outputBuffer = os.innerBuffer(); in saveToDataUriString()
258 final int length = os.size(); in saveToDataUriString()
276 outputBuffer = os.innerBuffer(); in saveToBase64String()
277 final int length = os.size(); in saveToBase64String()
[all …]
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/viewshot/
H A DViewShot.java11 import android.os.Build;
12 import android.os.Handler;
17 import android.os.Looper;
242 outputBuffer = os.innerBuffer(); in saveToRawFileOnDevice()
243 final int length = os.size(); in saveToRawFileOnDevice()
255 captureView(view, os); in saveToDataUriString()
257 outputBuffer = os.innerBuffer(); in saveToDataUriString()
258 final int length = os.size(); in saveToDataUriString()
276 outputBuffer = os.innerBuffer(); in saveToBase64String()
277 final int length = os.size(); in saveToBase64String()
[all …]
/expo/packages/expo-modules-core/ios/Swift/Logging/
H A DLogHandlers.swift3 import os.log
19 private let osLogger: os.Logger in log()
22 osLogger = os.Logger(subsystem: Logger.EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift3 import os.log
19 private let osLogger: os.Logger in log()
22 osLogger = os.Logger(subsystem: Logger.ABI47_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift3 import os.log
19 private let osLogger: os.Logger in log()
22 osLogger = os.Logger(subsystem: Logger.ABI49_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift3 import os.log
19 private let osLogger: os.Logger in log()
22 osLogger = os.Logger(subsystem: Logger.ABI48_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()

12345678910>>...52