Home
last modified time | relevance | path

Searched defs:input (Results 1 – 25 of 106) sorted by relevance

12345

/system/tools/aidl/tests/android/aidl/tests/
DICppJavaTests.aidl29 SimpleParcelable RepeatSimpleParcelable(in SimpleParcelable input, out SimpleParcelable repeat); in RepeatSimpleParcelable()
31 in GenericStructuredParcelable<int, StructuredParcelable, IntEnum> input, in RepeatGenericParcelable()
33 PersistableBundle RepeatPersistableBundle(in PersistableBundle input); in RepeatPersistableBundle()
36 in SimpleParcelable[] input, out SimpleParcelable[] repeated); in ReverseSimpleParcelables()
38 in PersistableBundle[] input, out PersistableBundle[] repeated); in ReversePersistableBundles()
39 Union ReverseUnion(in Union input, out Union repeated); in ReverseUnion()
41 List<IBinder> ReverseNamedCallbackList(in List<IBinder> input, out List<IBinder> repeated); in ReverseNamedCallbackList()
45 in FileDescriptor[] input, out FileDescriptor[] repeated); in ReverseFileDescriptorArray()
47 void TakesAnIBinderList(in List<IBinder> input); in TakesAnIBinderList()
48 void TakesANullableIBinderList(in @nullable List<IBinder> input); in TakesANullableIBinderList()
DITestService.aidl88 boolean[] ReverseBoolean(in boolean[] input, out boolean[] repeated); in ReverseBoolean()
89 byte[] ReverseByte(in byte[] input, out byte[] repeated); in ReverseByte()
90 char[] ReverseChar(in char[] input, out char[] repeated); in ReverseChar()
91 int[] ReverseInt(in int[] input, out int[] repeated); in ReverseInt()
92 long[] ReverseLong(in long[] input, out long[] repeated); in ReverseLong()
93 float[] ReverseFloat(in float[] input, out float[] repeated); in ReverseFloat()
94 double[] ReverseDouble(in double[] input, out double[] repeated); in ReverseDouble()
95 String[] ReverseString(in String[] input, out String[] repeated); in ReverseString()
96 ByteEnum[] ReverseByteEnum(in ByteEnum[] input, out ByteEnum[] repeated); in ReverseByteEnum()
97 IntEnum[] ReverseIntEnum(in IntEnum[] input, out IntEnum[] repeated); in ReverseIntEnum()
[all …]
/system/tools/aidl/tests/java/src/android/aidl/service/
DTestServiceServer.java155 public boolean[] ReverseBoolean(boolean[] input, boolean[] repeated) throws RemoteException { in ReverseBoolean()
164 public byte[] ReverseByte(byte[] input, byte[] repeated) throws RemoteException { in ReverseByte()
173 public char[] ReverseChar(char[] input, char[] repeated) throws RemoteException { in ReverseChar()
182 public int[] ReverseInt(int[] input, int[] repeated) throws RemoteException { in ReverseInt()
191 public long[] ReverseLong(long[] input, long[] repeated) throws RemoteException { in ReverseLong()
200 public float[] ReverseFloat(float[] input, float[] repeated) throws RemoteException { in ReverseFloat()
209 public double[] ReverseDouble(double[] input, double[] repeated) throws RemoteException { in ReverseDouble()
218 public String[] ReverseString(String[] input, String[] repeated) throws RemoteException { in ReverseString()
227 public byte[] ReverseByteEnum(byte[] input, byte[] repeated) throws RemoteException { in ReverseByteEnum()
236 public int[] ReverseIntEnum(int[] input, int[] repeated) throws RemoteException { in ReverseIntEnum()
[all …]
/system/tools/aidl/tests/
Daidl_test_service.cpp161 Status ReverseArray(const vector<T>& input, vector<T>* repeated, vector<T>* _aidl_return) { in ReverseArray()
170 Status RepeatNullable(const optional<T>& input, optional<T>* _aidl_return) { in RepeatNullable()
181 Status RepeatSimpleParcelable(const SimpleParcelable& input, SimpleParcelable* repeat, in RepeatSimpleParcelable()
190 const GenericStructuredParcelable<int32_t, StructuredParcelable, IntEnum>& input, in RepeatGenericParcelable()
199 Status RepeatPersistableBundle(const PersistableBundle& input, in RepeatPersistableBundle()
206 Status ReverseSimpleParcelables(const vector<SimpleParcelable>& input, in ReverseSimpleParcelables()
211 Status ReversePersistableBundles(const vector<PersistableBundle>& input, in ReversePersistableBundles()
216 Status ReverseUnion(const Union& input, Union* repeated, Union* _aidl_return) override { in ReverseUnion()
238 Status ReverseNamedCallbackList(const vector<sp<IBinder>>& input, vector<sp<IBinder>>* repeated, in ReverseNamedCallbackList()
249 Status ReverseFileDescriptorArray(const vector<unique_fd>& input, vector<unique_fd>* repeated, in ReverseFileDescriptorArray()
[all …]
Daidl_test_client_nullables.cpp86 std::vector<std::optional<String16>> input; in TEST_F() local
98 auto input = std::make_optional<StructuredParcelable>(); in TEST_F() local
126 std::vector<sp<IBinder>> input{new BBinder(), nullptr}; in TEST_F() local
137 sp<IBinder> input = new BBinder(); in TEST_F() local
145 std::vector<sp<IBinder>> input{new BBinder(), new BBinder()}; in TEST_F() local
158 std::vector<sp<IBinder>> input{new BBinder(), nullptr}; in TEST_F() local
164 sp<IBinder> input = new BBinder(); in TEST_F() local
172 std::vector<sp<IBinder>> input{new BBinder(), new BBinder()}; in TEST_F() local
Daidl_test_client_utf8_strings.cpp48 for (const auto& input : utf8_inputs) { in TEST_F() local
60 for (const auto& input : utf8_inputs) { in TEST_F() local
70 std::vector<std::string> input = {"a", "", "\xc3\xb8"}; in TEST_F() local
91 std::optional<std::vector<std::optional<std::string>>> input; in DoTest() local
/system/bt/gd/common/
Dinit_flags_test.cc26 const char* input[] = {"INIT_logging_debug_enabled_for_all=true", nullptr}; in TEST() local
34 const char* input[] = {"INIT_logging_debug_enabled_for_tags=foo,bar,hello", nullptr}; in TEST() local
44 const char* input[] = {"INIT_logging_debug_disabled_for_tags=foo,bar,hello", nullptr}; in TEST() local
54 const char* input[] = {"INIT_logging_debug_enabled_for_tags=foo,hello", in TEST() local
Dnumbers.h27 bool IsNumberInNumericLimits(InputType input) { in IsNumberInNumericLimits()
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
DITestService.cpp556 …nst ::std::vector<bool>& input, ::std::vector<bool>* repeated, ::std::vector<bool>* _aidl_return) { in ReverseBoolean()
602 …::vector<uint8_t>& input, ::std::vector<uint8_t>* repeated, ::std::vector<uint8_t>* _aidl_return) { in ReverseByte()
648 …ector<char16_t>& input, ::std::vector<char16_t>* repeated, ::std::vector<char16_t>* _aidl_return) { in ReverseChar()
694 …::vector<int32_t>& input, ::std::vector<int32_t>* repeated, ::std::vector<int32_t>* _aidl_return) { in ReverseInt()
740 …::vector<int64_t>& input, ::std::vector<int64_t>* repeated, ::std::vector<int64_t>* _aidl_return) { in ReverseLong()
786 … ::std::vector<float>& input, ::std::vector<float>* repeated, ::std::vector<float>* _aidl_return) { in ReverseFloat()
832 …std::vector<double>& input, ::std::vector<double>* repeated, ::std::vector<double>* _aidl_return) { in ReverseDouble()
878 …, ::std::vector<::android::String16>* repeated, ::std::vector<::android::String16>* _aidl_return) { in ReverseString()
924 …teEnum>& input, ::std::vector<::android::aidl::tests::ByteEnum>* repeated, ::std::vector<::android… in ReverseByteEnum()
970 …Enum>& input, ::std::vector<::android::aidl::tests::IntEnum>* repeated, ::std::vector<::android::a… in ReverseIntEnum()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
DITestService.java81 …@Override public boolean[] ReverseBoolean(boolean[] input, boolean[] repeated) throws android.os.R… in ReverseBoolean()
85 …@Override public byte[] ReverseByte(byte[] input, byte[] repeated) throws android.os.RemoteExcepti… in ReverseByte()
89 …@Override public char[] ReverseChar(char[] input, char[] repeated) throws android.os.RemoteExcepti… in ReverseChar()
93 @Override public int[] ReverseInt(int[] input, int[] repeated) throws android.os.RemoteException in ReverseInt()
97 …@Override public long[] ReverseLong(long[] input, long[] repeated) throws android.os.RemoteExcepti… in ReverseLong()
101 …@Override public float[] ReverseFloat(float[] input, float[] repeated) throws android.os.RemoteExc… in ReverseFloat()
105 …@Override public double[] ReverseDouble(double[] input, double[] repeated) throws android.os.Remot… in ReverseDouble()
109 …@Override public java.lang.String[] ReverseString(java.lang.String[] input, java.lang.String[] rep… in ReverseString()
113 …@Override public byte[] ReverseByteEnum(byte[] input, byte[] repeated) throws android.os.RemoteExc… in ReverseByteEnum()
117 …@Override public int[] ReverseIntEnum(int[] input, int[] repeated) throws android.os.RemoteExcepti… in ReverseIntEnum()
[all …]
/system/hardware/interfaces/keystore2/aidl/android/system/keystore2/
DIKeystoreOperation.aidl85 @nullable byte[] update(in byte[] input); in update()
111 @nullable byte[] finish(in @nullable byte[] input, in @nullable byte[] signature); in finish()
/system/hardware/interfaces/keystore2/aidl/aidl_api/android.system.keystore2/1/android/system/keystore2/
DIKeystoreOperation.aidl39 @nullable byte[] update(in byte[] input); in update()
40 @nullable byte[] finish(in @nullable byte[] input, in @nullable byte[] signature); in finish()
/system/hardware/interfaces/keystore2/aidl/aidl_api/android.system.keystore2/current/android/system/keystore2/
DIKeystoreOperation.aidl39 @nullable byte[] update(in byte[] input); in update()
40 @nullable byte[] finish(in @nullable byte[] input, in @nullable byte[] signature); in finish()
/system/tools/aidl/tests/java/src/android/aidl/tests/
DTestServiceClient.java201 char[] input = {'A', 'B', 'C', 'D', 'E'}; in testCharArrayReversal() local
214 int[] input = {-1, 0, 1, 2, 3, 4, 5, 6}; in testIntArrayReversal() local
227 long[] input = {-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8}; in testLongArrayReversal() local
240 float[] input = {0.0f, 1.0f, -0.3f}; in testFloatArrayReversal() local
253 double[] input = {-1.0, -4.0, -2.0}; in testDoubleArrayReversal() local
266 String[] input = {"For", "relaxing", "times"}; in testStringArrayReversal() local
287 List<String> input = Arrays.asList("Walk", "into", "Córdoba"); in testListReversal() local
300 GenericStructuredParcelable<Integer, StructuredParcelable, Integer> input = in testRepeatGenericParcelable() local
320 SimpleParcelable input = new SimpleParcelable("foo", 42); in testRepeatParcelable() local
331 SimpleParcelable[] input = new SimpleParcelable[3]; in testReverseParcelable() local
[all …]
/system/logging/liblog/tests/
Dlogprint_test.cpp28 auto input = "easy string, output same"; in TEST() local
41 auto input = "escape\a\b\t\v\f\r\\"; in TEST() local
54 auto input = u8"¢ह€��"; in TEST() local
66 auto input = "\x80\xC2\x01\xE0\xA4\x06\xE0\x06\xF0\x90\x8D\x06\xF0\x90\x06\xF0\x0E"; in TEST() local
80 auto input = in TEST() local
/system/keymaster/km_openssl/
Decdsa_operation.cpp93 keymaster_error_t EcdsaOperation::StoreData(const Buffer& input, size_t* input_consumed) { in StoreData()
123 const Buffer& input, in Update()
135 const Buffer& input, const Buffer& /* signature */, in Finish()
184 const Buffer& input, in Update()
196 const Buffer& input, const Buffer& signature, in Finish()
Dblock_cipher_operation.cpp169 const Buffer& input, in Update()
187 const Buffer& input, in Finish()
290 bool BlockCipherEvpOperation::HandleAad(const AuthorizationSet& input_params, const Buffer& input, in HandleAad()
362 bool BlockCipherEvpOperation::InternalUpdate(const uint8_t* input, size_t input_length, in InternalUpdate()
383 const Buffer& input, AuthorizationSet* output_params, in UpdateForFinish()
420 const Buffer& input, in Finish()
467 const Buffer& input, in Update()
485 keymaster_error_t BlockCipherEvpDecryptOperation::ProcessAllButTagLengthBytes(const Buffer& input, in ProcessAllButTagLengthBytes()
531 const Buffer& input, in Finish()
Drsa_operation.cpp179 const Buffer& input, AuthorizationSet* /* output_params */, in Update()
193 keymaster_error_t RsaOperation::StoreData(const Buffer& input, size_t* input_consumed) { in StoreData()
290 const Buffer& input, AuthorizationSet* output_params, in Update()
304 const Buffer& input, const Buffer& /* signature */, in Finish()
401 const Buffer& input, AuthorizationSet* output_params, in Update()
415 const Buffer& input, const Buffer& signature, in Finish()
528 const Buffer& input, const Buffer& /* signature */, in Finish()
571 const Buffer& input, const Buffer& /* signature */, in Finish()
/system/keymaster/ng/
DAndroidKeyMintOperation.cpp52 AndroidKeyMintOperation::updateAad(const vector<uint8_t>& input, in updateAad()
65 ScopedAStatus AndroidKeyMintOperation::update(const vector<uint8_t>& input, in update()
89 AndroidKeyMintOperation::finish(const optional<vector<uint8_t>>& input, // in finish()
/system/core/init/
Drlimit_parser_test.cpp26 void TestRlimitSuccess(std::vector<std::string> input, in TestRlimitSuccess()
40 void TestRlimitFailure(std::vector<std::string> input, const std::string& expected_result) { in TestRlimitFailure()
/system/tools/xsdc/src/com/android/xsdc/java/
DUtils.java44 static String capitalize(String input) { in capitalize()
48 private static String lowerize(String input) { in lowerize()
/system/core/trusty/keymaster/keymint/
DTrustyKeyMintOperation.cpp55 const vector<uint8_t>& input, const optional<HardwareAuthToken>& /* authToken */, in updateAad()
67 ScopedAStatus TrustyKeyMintOperation::update(const vector<uint8_t>& input, in update()
110 ScopedAStatus TrustyKeyMintOperation::finish(const optional<vector<uint8_t>>& input, // in finish()
/system/bt/gd/os/linux_generic/
Dfiles.cc54 std::ifstream input(path, std::ios::binary | std::ios::ate); in FileExists() local
67 std::ifstream input(path, std::ios::binary | std::ios::ate); in ReadSmallFile() local
/system/keymaster/legacy_support/
Dkeymaster_passthrough_operation.cpp26 const AuthorizationSet& input_params, const Buffer& input, const Buffer& signature, in Finish()
95 const AuthorizationSet& input_params, const Buffer& input, const Buffer& signature, in Finish()
/system/tools/xsdc/src/com/android/xsdc/cpp/
DUtils.java47 static String capitalize(String input) { in capitalize()
51 static String lowerize(String input) { in lowerize()

12345