Home
last modified time | relevance | path

Searched refs:byteCount (Results 1 – 21 of 21) sorted by relevance

/expo/packages/expo-random/build/
H A DRandom.js22 export function getRandomBytes(byteCount) { argument
24 assertByteCount(byteCount, 'getRandomBytes');
25 const validByteCount = Math.floor(byteCount);
54 export async function getRandomBytesAsync(byteCount) { argument
56 assertByteCount(byteCount, 'getRandomBytesAsync');
57 const validByteCount = Math.floor(byteCount);
H A DRandom.d.ts8 export declare function getRandomBytes(byteCount: number): Uint8Array;
15 export declare function getRandomBytesAsync(byteCount: number): Promise<Uint8Array>;
H A DRandom.js.map1byteCount` property\n * is a `number` indicating the number of bytes to generate in the form of a …
/expo/packages/expo-random/src/
H A DRandom.ts34 export function getRandomBytes(byteCount: number): Uint8Array {
36 assertByteCount(byteCount, 'getRandomBytes');
37 const validByteCount = Math.floor(byteCount);
65 export async function getRandomBytesAsync(byteCount: number): Promise<Uint8Array> {
67 assertByteCount(byteCount, 'getRandomBytesAsync');
68 const validByteCount = Math.floor(byteCount);
/expo/packages/expo-crypto/build/
H A DCrypto.js20 export function getRandomBytes(byteCount) { argument
21 assertByteCount(byteCount, 'getRandomBytes');
22 const validByteCount = Math.floor(byteCount);
51 export async function getRandomBytesAsync(byteCount) { argument
52 assertByteCount(byteCount, 'getRandomBytesAsync');
53 const validByteCount = Math.floor(byteCount);
H A DCrypto.d.ts11 export declare function getRandomBytes(byteCount: number): Uint8Array;
18 export declare function getRandomBytesAsync(byteCount: number): Promise<Uint8Array>;
H A DCrypto.js.map1byteCount` property\n * is a `number` indicating the number of bytes to generate in the form of a …
/expo/packages/expo-crypto/src/
H A DCrypto.ts27 export function getRandomBytes(byteCount: number): Uint8Array {
28 assertByteCount(byteCount, 'getRandomBytes');
29 const validByteCount = Math.floor(byteCount);
57 export async function getRandomBytesAsync(byteCount: number): Promise<Uint8Array> {
58 assertByteCount(byteCount, 'getRandomBytesAsync');
59 const validByteCount = Math.floor(byteCount);
/expo/packages/expo-file-system/android/src/main/java/expo/modules/filesystem/
H A DCountingRequestBody.kt28 override fun write(source: Buffer, byteCount: Long) { in onProgress()
29 super.write(source, byteCount) in onProgress()
31 bytesWritten += byteCount in onProgress()
H A DFileSystemModule.kt955 override fun read(sink: Buffer, byteCount: Long): Long { in contentType()
956 val bytesRead = super.read(sink, byteCount) in contentType()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/filesystem/
H A DCountingRequestBody.kt28 override fun write(source: Buffer, byteCount: Long) { in onProgress()
29 super.write(source, byteCount) in onProgress()
31 bytesWritten += byteCount in onProgress()
H A DFileSystemModule.kt955 override fun read(sink: Buffer, byteCount: Long): Long { in contentType()
956 val bytesRead = super.read(sink, byteCount) in contentType()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/filesystem/
H A DCountingRequestBody.kt28 override fun write(source: Buffer, byteCount: Long) { in onProgress()
29 super.write(source, byteCount) in onProgress()
31 bytesWritten += byteCount in onProgress()
H A DFileSystemModule.kt1158 override fun read(sink: Buffer, byteCount: Long): Long { in contentType()
1159 val bytesRead = super.read(sink, byteCount) in contentType()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/filesystem/
H A DCountingRequestBody.kt28 override fun write(source: Buffer, byteCount: Long) { in onProgress()
29 super.write(source, byteCount) in onProgress()
31 bytesWritten += byteCount in onProgress()
H A DFileSystemModule.kt1158 override fun read(sink: Buffer, byteCount: Long): Long { in contentType()
1159 val bytesRead = super.read(sink, byteCount) in contentType()
/expo/packages/expo-secure-store/build/
H A DSecureStore.js144 if (byteCount(value) > VALUE_BYTES_LIMIT) {
150 function byteCount(value) { function
H A DSecureStore.js.map1byteCount(value) > VALUE_BYTES_LIMIT) {\n console.warn(\n 'Provided value to SecureStore i…
/expo/packages/expo-secure-store/src/
H A DSecureStore.ts221 if (byteCount(value) > VALUE_BYTES_LIMIT) {
230 function byteCount(value: string) { function
/expo/apps/native-component-list/src/screens/
H A DCryptoScreen.tsx12 name: 'byteCount',
24 name: 'byteCount',
/expo/android/expoview/src/main/java/host/exp/exponent/
H A DExponentManifest.kt306 return bitmap.byteCount / 1024 in sizeOf()