HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 101 - 125 of 44327) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/conscrypt/openjdk-integ-tests/src/test/resources/crypto/
parse_records.py 6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
19 Reads in a selection of test cases in NIST response file format on standard
21 NIST-recommended statement in a header at the top, prefixed by #
22 characters. The data is in one of the following formats:
42 if 'key' in record and 'iv' in record and 'plaintext' in record and 'ciphertext' in record
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/tpm2/
NV_Read.c 24 NV_Read_In *in, // IN: input parameter list
34 NvGetIndexInfo(in->nvIndex, &nvIndex);
39 result = NvReadAccessChecks(in->authHandle, in->nvIndex);
44 if((in->size + in->offset) > nvIndex.publicArea.dataSize)
50 out->data.t.size = in->size;
52 NvGetIndexData(in->nvIndex, &nvIndex, in->offset, in->size, out->data.t.buffer)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ISoundTriggerService.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 SoundTrigger.GenericSoundModel getSoundModel(in ParcelUuid soundModelId);
34 void updateSoundModel(in SoundTrigger.GenericSoundModel soundModel);
36 void deleteSoundModel(in ParcelUuid soundModelId);
38 int startRecognition(in ParcelUuid soundModelId, in IRecognitionStatusCallback callback,
39 in SoundTrigger.RecognitionConfig config);
41 int stopRecognition(in ParcelUuid soundModelId, in IRecognitionStatusCallback callback)
    [all...]
  /frameworks/base/location/java/android/location/
IGnssStatusListener.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
29 void onSvStatusChanged(int svCount, in int[] svidWithFlags, in float[] cn0s,
30 in float[] elevations, in float[] azimuths,
31 in float[] carrierFreqs);
  /frameworks/base/media/java/android/media/tv/
ITvInputServiceCallback.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 void addHardwareInput(in int deviceId, in TvInputInfo inputInfo);
28 void addHdmiInput(in int id, in TvInputInfo inputInfo);
29 void removeHardwareInput(in String inputId);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/ltp/testcases/commands/file/
file01.sh 12 ## This program is distributed in the hope that it will be useful, but ##
35 case $(readelf -h /bin/sh) in
74 case $1 in
75 1) file_test in.txt "ASCII text";;
76 2) file_test in.bash "Bourne-Again shell script";;
77 3) file_test in.sh "POSIX shell script, ASCII text executable" \
81 4) file_test in.ksh "Korn shell script";;
82 5) file_test in.csh "C shell script";;
83 6) file_test in.c "ASCII C program text" "C source, ASCII text";;
84 7) file_test in.pl "[pP]erl script, ASCII text executable"
    [all...]
  /frameworks/rs/tests/lldb/cpp/Allocations/
allocs.rs 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
21 uchar4 __attribute__((kernel)) swizzle_kernel(uchar4 in)
23 return in.wzyx;
26 // Kernel squares every element in allocation
27 uint __attribute__((kernel)) square_kernel(ushort in)
29 uint result = (uint)in * (uint)in;
33 // Helper function adding 1/2 to passed in double
34 static double half_helper(double in)
    [all...]
  /frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
allocs.rs 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
21 uchar4 __attribute__((kernel)) swizzle_kernel(uchar4 in)
23 return in.wzyx;
26 // Kernel squares every element in allocation
27 uint __attribute__((kernel)) square_kernel(ushort in)
29 uint result = (uint)(in) * (uint)in;
33 // Helper function adding 1/2 to passed in double
34 static double half_helper(double in)
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/tlswire/util/
IoUtils.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
20 public static int readUnsignedInt24(DataInput in) throws IOException {
21 return (in.readUnsignedByte() << 16) | in.readUnsignedShort();
23 public static byte[] readTlsVariableLengthByteVector(DataInput in, int maxSizeBytes)
25 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes);
27 in.readFully(result);
30 public static int[] readTlsVariableLengthUnsignedShortVector(DataInput in, int maxSizeBytes)
32 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes)
    [all...]
  /frameworks/base/core/java/android/content/
IRestrictionsManager.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 Bundle getApplicationRestrictions(in String packageName);
30 void requestPermission(in String packageName, in String requestType, in String requestId,
31 in PersistableBundle requestData);
32 void notifyPermissionResponse(in String packageName, in PersistableBundle response);
  /frameworks/base/core/java/android/service/gatekeeper/
IGateKeeperService.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 * This must be kept manually in sync with system/core/gatekeeperd
41 GateKeeperResponse enroll(int uid, in byte[] currentPasswordHandle, in byte[] currentPassword,
42 in byte[] desiredPassword);
52 GateKeeperResponse verify(int uid, in byte[] enrolledPasswordHandle, in byte[] providedPassword);
65 GateKeeperResponse verifyChallenge(int uid, long challenge, in byte[] enrolledPasswordHandle,
66 in byte[] providedPassword)
    [all...]
  /libcore/support/src/test/java/libcore/tlswire/util/
IoUtils.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 public static int readUnsignedInt24(DataInput in) throws IOException {
25 return (in.readUnsignedByte() << 16) | in.readUnsignedShort();
28 public static byte[] readTlsVariableLengthByteVector(DataInput in, int maxSizeBytes)
30 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes);
32 in.readFully(result);
36 public static int[] readTlsVariableLengthUnsignedShortVector(DataInput in, int maxSizeBytes)
38 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes)
    [all...]
  /system/bt/binder/android/bluetooth/le/
IScannerCallback.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 void onScannerRegistered(in int status, in int scannerId);
27 void onScanResult(in ScanResult scanResult);
28 void onBatchScanResults(in List<ScanResult> batchResults);
29 void onFoundOrLost(in boolean onFound, in ScanResult scanResult);
30 void onScanManagerErrorCallback(in int errorCode);
  /frameworks/base/core/java/com/android/internal/widget/
ILockSettings.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 void setBoolean(in String key, in boolean value, in int userId);
34 void setLong(in String key, in long value, in int userId);
35 void setString(in String key, in String value, in int userId)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
get_line.pass.cpp 26 std::istringstream in(" abc\n def\n ghij");
28 getline(in, s);
29 assert(in.good());
31 getline(in, s);
32 assert(in.good());
34 getline(in, s);
35 assert(in.eof());
39 std::wistringstream in(L" abc\n def\n ghij");
41 getline(in, s);
42 assert(in.good())
    [all...]
  /frameworks/base/core/java/android/content/pm/
IOnAppsChangedListener.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 void onPackageRemoved(in UserHandle user, String packageName);
28 void onPackageAdded(in UserHandle user, String packageName);
29 void onPackageChanged(in UserHandle user, String packageName);
30 void onPackagesAvailable(in UserHandle user, in String[] packageNames, boolean replacing);
31 void onPackagesUnavailable(in UserHandle user, in String[] packageNames, boolean replacing);
32 void onPackagesSuspended(in UserHandle user, in String[] packageNames
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSessionListener.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 void onCalling(in ISipSession session);
41 void onRinging(in ISipSession session, in SipProfile caller,
49 void onRingingBack(in ISipSession session);
57 void onCallEstablished(in ISipSession session,
65 void onCallEnded(in ISipSession session);
72 void onCallBusy(in ISipSession session);
80 void onCallTransferring(in ISipSession newSession, String sessionDescription)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.io/
get_line.pass.cpp 26 std::istringstream in(" abc\n def\n ghij");
28 getline(in, s);
29 assert(in.good());
31 getline(in, s);
32 assert(in.good());
34 getline(in, s);
35 assert(in.eof());
39 std::wistringstream in(L" abc\n def\n ghij");
41 getline(in, s);
42 assert(in.good())
    [all...]
  /system/bt/binder/android/bluetooth/
IBluetoothHidHost.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 boolean connect(in BluetoothDevice device);
29 boolean disconnect(in BluetoothDevice device);
31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
32 int getConnectionState(in BluetoothDevice device);
33 boolean setPriority(in BluetoothDevice device, int priority);
34 int getPriority(in BluetoothDevice device);
38 boolean getProtocolMode(in BluetoothDevice device);
42 boolean virtualUnplug(in BluetoothDevice device)
    [all...]
IBluetoothMapClient.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
29 boolean connect(in BluetoothDevice device);
30 boolean disconnect(in BluetoothDevice device);
31 boolean isConnected(in BluetoothDevice device);
33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
34 int getConnectionState(in BluetoothDevice device);
35 boolean setPriority(in BluetoothDevice device,in int priority);
36 int getPriority(in BluetoothDevice device)
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
get_monthname_wide.pass.cpp 41 const wchar_t in[] = L"Jan"; local
44 I i = f.get_monthname(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t);
45 assert(i.base() == in+3);
50 const wchar_t in[] = L"Feb"; local
53 I i = f.get_monthname(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t)
59 const wchar_t in[] = L"Mar"; local
68 const wchar_t in[] = L"Apr"; local
77 const wchar_t in[] = L"May"; local
86 const wchar_t in[] = L"Jun"; local
95 const wchar_t in[] = L"Jul"; local
104 const wchar_t in[] = L"Aug"; local
113 const wchar_t in[] = L"Sep"; local
122 const wchar_t in[] = L"Oct"; local
131 const wchar_t in[] = L"Nov"; local
140 const wchar_t in[] = L"Dec"; local
149 const wchar_t in[] = L"January"; local
158 const wchar_t in[] = L"February"; local
167 const wchar_t in[] = L"March"; local
176 const wchar_t in[] = L"April"; local
185 const wchar_t in[] = L"May"; local
194 const wchar_t in[] = L"June"; local
203 const wchar_t in[] = L"July"; local
212 const wchar_t in[] = L"August"; local
221 const wchar_t in[] = L"September"; local
230 const wchar_t in[] = L"October"; local
239 const wchar_t in[] = L"November"; local
248 const wchar_t in[] = L"December"; local
257 const wchar_t in[] = L"Decemper"; local
    [all...]
  /frameworks/base/core/java/android/accounts/
IAccountManager.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 String getPassword(in Account account);
35 String getUserData(in Account account, String key);
41 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features,
43 void getAccountByTypeAndFeatures(in IAccountManagerResponse response, String accountType,
44 in String[] features, String opPackageName);
45 void getAccountsByFeatures(in IAccountManagerResponse response, String accountType
    [all...]
  /frameworks/base/core/java/android/app/admin/
IDevicePolicyManager.aidl 6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
50 void setPasswordQuality(in ComponentName who, int quality, boolean parent);
51 int getPasswordQuality(in ComponentName who, int userHandle, boolean parent);
53 void setPasswordMinimumLength(in ComponentName who, int length, boolean parent);
54 int getPasswordMinimumLength(in ComponentName who, int userHandle, boolean parent);
56 void setPasswordMinimumUpperCase(in ComponentName who, int length, boolean parent);
57 int getPasswordMinimumUpperCase(in ComponentName who, int userHandle, boolean parent);
59 void setPasswordMinimumLowerCase(in ComponentName who, int length, boolean parent);
60 int getPasswordMinimumLowerCase(in ComponentName who, int userHandle, boolean parent)
    [all...]

Completed in 993 milliseconds

1 2 3 45 6 7 8 91011>>