/aosp12/system/teeui/libteeui/include/teeui/ |
H A D | msg_formatting.h | 36 std::tuple<std::remove_reference_t<T>&&...> tuple_move_helper(std::index_sequence<idx...>, in tuple_move_helper() 37 std::tuple<T...>&& t) { in tuple_move_helper() 42 std::tuple<std::remove_reference_t<T>&&...> tuple_move(std::tuple<T...>&& t) { in tuple_move() 47 std::tuple<std::remove_reference_t<T>&&...> tuple_move(std::tuple<T...>& t) { in tuple_move() 131 std::tuple<ReadStream, ReadStream::ptr_t, uint32_t> read(ReadStream in); 133 template <typename T> std::tuple<ReadStream, T> readSimpleType(ReadStream in) { in readSimpleType() 168 std::tuple<T&&...> tuple_tail(std::index_sequence<first_idx, idx...>, std::tuple<HEAD, T...>&& t) { 173 std::tuple<const T&...> tuple_tail(std::index_sequence<first_idx, idx...>, 174 const std::tuple<HEAD, T...>& t) { 179 std::tuple<Tail&&...> tuple_tail(std::tuple<HEAD, Tail...>&& t) { [all …]
|
H A D | common_message_types.h | 89 template <typename T> std::tuple<ReadStream, MsgVector<T>> readSimpleVecInPlace(ReadStream in) { in readSimpleVecInPlace() 90 std::tuple<ReadStream, MsgVector<T>> result; in readSimpleVecInPlace() 109 inline std::tuple<ReadStream, ResponseCode> read(Message<ResponseCode>, ReadStream in) { in read() 117 inline std::tuple<ReadStream, TestModeCommands> read(Message<TestModeCommands>, ReadStream in) { in read() 127 inline std::tuple<ReadStream, MsgVector<uint8_t>> read(Message<MsgVector<uint8_t>>, ReadStream in) { in read() 135 inline std::tuple<ReadStream, MsgString> read(Message<MsgString>, ReadStream in) { in read() 143 inline std::tuple<ReadStream, MsgVector<UIOption>> read(Message<MsgVector<UIOption>>, in read() 155 inline std::tuple<teeui::ReadStream, teeui::Array<uint8_t, size>> 157 std::tuple<teeui::ReadStream, teeui::Array<uint8_t, size>> result; in read()
|
H A D | generic_messages.h | 82 std::tuple<ReadStream, Fields...> read(Message<Cmd<proto, CmdT, cmd>, Fields...>, ReadStream in) { in read() 88 using type = std::tuple<T...>; 91 std::tuple<ReadStream, uint32_t> readU32(ReadStream in); 94 std::tuple<ReadStream, CmdT> readCmd(ReadStream in) { 107 std::tuple<ReadStream, Command> readCommand(ReadStream in); 109 std::tuple<ReadStream, Protocol> readProtocol(ReadStream in);
|
/aosp12/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/presence/pidfparser/pidf/ |
H A D | TupleTest.java | 73 Tuple tuple = new Tuple(); in testElementName() local 82 Tuple tuple = new Tuple(); in testSerializing() local 87 tuple.setStatus(status); in testSerializing() 107 tuple.setServiceCaps(serviceCaps); in testSerializing() 110 tuple.addNote(note); in testSerializing() 114 tuple.setTimestamp(timestamp); in testSerializing() 121 tuple.serialize(serializer); in testSerializing() 183 Tuple tuple = null; in testParsing() local 190 tuple = new Tuple(); in testParsing() 191 tuple.parse(parser); in testParsing() [all …]
|
H A D | PresenceTest.java | 167 Tuple tuple = tupleList.get(0); in testParsing() local 168 assertEquals(serviceId, PidfParserUtils.getTupleServiceId(tuple)); in testParsing() 169 assertEquals(version, PidfParserUtils.getTupleServiceVersion(tuple)); in testParsing() 170 assertEquals(description, PidfParserUtils.getTupleServiceDescription(tuple)); in testParsing() 171 assertEquals(contact, PidfParserUtils.getTupleContact(tuple)); in testParsing() 191 Tuple tuple = new Tuple(); in getTuple() local 192 tuple.setStatus(status); in getTuple() 193 tuple.setServiceDescription(serviceDescription); in getTuple() 194 tuple.setContact(contact); in getTuple() 196 return tuple; in getTuple()
|
/aosp12/packages/apps/Test/connectivity/sl4n/facades/test/ |
H A D | test_facade.h | 25 std::tuple<bool, int> TestBoolTrueReturn(); 26 std::tuple<bool, int> TestBoolFalseReturn(); 27 std::tuple<bool, int> TestErrorCodeFail(); 28 std::tuple<int, int> TestNullReturn(); 29 std::tuple<std::string, int> TestStringEmptyReturn(); 30 std::tuple<std::string, int> TestStringMaxReturn( 32 std::tuple<bool, int> TestSpecificParamNaming(
|
/aosp12/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/pidfparser/ |
H A D | PidfParserUtils.java | 193 public static String getTupleStatus(Tuple tuple) { in getTupleStatus() argument 194 if (tuple == null) { in getTupleStatus() 197 Status status = tuple.getStatus(); in getTupleStatus() 211 if (tuple == null) { in getTupleServiceId() 228 if (tuple == null) { in getTupleServiceVersion() 245 if (tuple == null) { in getTupleServiceDescription() 261 public static String getTupleContact(Tuple tuple) { in getTupleContact() argument 262 if (tuple == null) { in getTupleContact() 265 Contact contact = tuple.getContact(); in getTupleContact() 276 if (tuple == null) { in getTupleTimestamp() [all …]
|
H A D | PidfParser.java | 203 presence.getTupleList().forEach(tuple -> { in convertToRcsContactUceCapability() 204 RcsContactPresenceTuple capabilityTuple = getRcsContactPresenceTuple(tuple); in convertToRcsContactUceCapability() 216 private static RcsContactPresenceTuple getRcsContactPresenceTuple(Tuple tuple) { in getRcsContactPresenceTuple() argument 217 if (tuple == null) { in getRcsContactPresenceTuple() 222 if (Basic.OPEN.equals(PidfParserUtils.getTupleStatus(tuple))) { in getRcsContactPresenceTuple() 226 String serviceId = PidfParserUtils.getTupleServiceId(tuple); in getRcsContactPresenceTuple() 227 String serviceVersion = PidfParserUtils.getTupleServiceVersion(tuple); in getRcsContactPresenceTuple() 228 String serviceDescription = PidfParserUtils.getTupleServiceDescription(tuple); in getRcsContactPresenceTuple() 234 String contact = PidfParserUtils.getTupleContact(tuple); in getRcsContactPresenceTuple() 248 ServiceCaps serviceCaps = tuple.getServiceCaps(); in getRcsContactPresenceTuple()
|
/aosp12/packages/apps/Test/connectivity/sl4n/facades/bluetooth/ |
H A D | bt_binder_facade.h | 40 std::tuple<bool, int> BtBinderEnable(); 41 std::tuple<std::string, int> BtBinderGetAddress(); 42 std::tuple<std::string, int> BtBinderGetName(); 43 std::tuple<bool, int> BtBinderInitInterface(); 44 std::tuple<bool, int> BtBinderRegisterBLE(); 45 std::tuple<int, int> BtBinderSetAdvSettings( 47 std::tuple<bool, int> BtBinderSetName(std::string name);
|
/aosp12/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/ |
H A D | msg_formatting.h | 86 std::tuple<std::remove_reference_t<T>&&...> tuple_move(std::tuple<T...>&& t) { 91 std::tuple<std::remove_reference_t<T>&&...> tuple_move(std::tuple<T...>& t) { 237 std::tuple<ReadStream, hidl_vec<T>> result; 269 std::tuple<ReadStream, HardwareAuthToken> result; 337 std::tuple<ReadStream, hidl_string> result; 438 using type = std::tuple<T...>; 442 using type = std::tuple<T...>; 449 std::tuple<T&&...> tuple_tail(IntegerSequence<idx...>, std::tuple<HEAD, T...>&& t) { 454 std::tuple<const T&...> tuple_tail(IntegerSequence<idx...>, const std::tuple<HEAD, T...>& t) { 459 std::tuple<Tail&&...> tuple_tail(std::tuple<HEAD, Tail...>&& t) { [all …]
|
/aosp12/packages/modules/Gki/libkver/include/kver/ |
H A D | kmi_version.h | 47 std::tuple<uint64_t, uint64_t, uint64_t, uint64_t> tuple() const; 59 return left.tuple() == right.tuple(); 63 return left.tuple() != right.tuple();
|
/aosp12/frameworks/native/include/ftl/ |
H A D | initializer_list.h | 59 return {std::tuple_cat(std::move(tuple), std::forward_as_tuple(std::forward<Args>(args)...))}; 65 std::tuple<Types...> tuple; 80 std::tuple<K&&>, std::tuple<Args&&...>> { 82 std::move(tuple), 87 std::tuple<Types...> tuple;
|
/aosp12/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/presence/pidfparser/ |
H A D | PidfParserTest.java | 182 for(RcsContactPresenceTuple tuple : presenceTupleList) { in testConvertFromNewlineIncludedPidfToRcsContactUceCapability() 183 String serviceId = tuple.getServiceId(); in testConvertFromNewlineIncludedPidfToRcsContactUceCapability() 189 assertEquals(expectedTuple.getStatus(), tuple.getStatus()); in testConvertFromNewlineIncludedPidfToRcsContactUceCapability() 192 assertEquals(mPidfTimestamp, tuple.getTime()); in testConvertFromNewlineIncludedPidfToRcsContactUceCapability() 196 ServiceCapabilities resultCap = tuple.getServiceCapabilities(); in testConvertFromNewlineIncludedPidfToRcsContactUceCapability() 212 for (RcsContactPresenceTuple tuple : expectedTupleList) { in findTuple() 213 if (serviceId.equalsIgnoreCase(tuple.getServiceId())) { in findTuple() 214 return tuple; in findTuple() 294 RcsContactPresenceTuple tuple = originalTuples.get(i); in testConversionAndRestoration() local 298 assertEquals(tuple.getStatus(), restoredTuple.getStatus()); in testConversionAndRestoration() [all …]
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A D | StateListAnimator.java | 83 Tuple tuple = new Tuple(specs, animator); in addState() local 84 tuple.mAnimator.addListener(mAnimatorListener); in addState() 85 mTuples.add(tuple); in addState() 147 final Tuple tuple = mTuples.get(i); in clone() local 148 final Animator animatorClone = tuple.mAnimator.clone(); in clone() 150 clone.addState(tuple.mSpecs, animatorClone); in clone() 167 final Tuple tuple = mTuples.get(i); in setState() local 168 if (StateSet.stateSetMatches(tuple.mSpecs, state)) { in setState() 169 match = tuple; in setState()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/ |
H A D | HSConnectionCapabilityElementTest.java | 50 private void appendProtocolPortTuple(ByteBuffer buffer, ProtocolPortTuple tuple) { in appendProtocolPortTuple() argument 51 buffer.put((byte) tuple.getProtocol()); in appendProtocolPortTuple() 52 buffer.putShort((short) tuple.getPort()); in appendProtocolPortTuple() 53 buffer.put((byte) tuple.getStatus()); in appendProtocolPortTuple() 65 for (ProtocolPortTuple tuple : tuples) { in getTestBuffer() 66 appendProtocolPortTuple(buffer, tuple); in getTestBuffer()
|
/aosp12/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/pidfparser/pidf/ |
H A D | Presence.java | 89 public void addTuple(@NonNull Tuple tuple) { in addTuple() argument 90 mTupleList.add(tuple); in addTuple() 115 for (Tuple tuple : mTupleList) { in serialize() 116 tuple.serialize(serializer); in serialize() 148 Tuple tuple = new Tuple(); in parse() local 149 tuple.parse(parser); in parse() 150 mTupleList.add(tuple); in parse()
|
/aosp12/hardware/interfaces/identity/support/src/ |
H A D | cppbor_parse.cpp | 38 std::tuple<bool, uint64_t, const uint8_t*> parseLength(const uint8_t* pos, const uint8_t* end, 53 std::tuple<const uint8_t*, ParseClient*> parseRecursively(const uint8_t* begin, const uint8_t* end, 56 std::tuple<const uint8_t*, ParseClient*> handleUint(uint64_t value, const uint8_t* hdrBegin, in handleUint() 64 std::tuple<const uint8_t*, ParseClient*> handleNint(uint64_t value, const uint8_t* hdrBegin, in handleNint() 76 std::tuple<const uint8_t*, ParseClient*> handleBool(uint64_t value, const uint8_t* hdrBegin, in handleBool() 84 std::tuple<const uint8_t*, ParseClient*> handleNull(const uint8_t* hdrBegin, const uint8_t* hdrEnd, in handleNull() 92 std::tuple<const uint8_t*, ParseClient*> handleString(uint64_t length, const uint8_t* hdrBegin, in handleString() 157 std::tuple<const uint8_t*, ParseClient*> handleEntries(size_t entryCount, const uint8_t* hdrBegin, in handleEntries() 173 std::tuple<const uint8_t*, ParseClient*> handleCompound( in handleCompound() 309 std::tuple<std::unique_ptr<Item> /* result */, const uint8_t* /* newPos */, [all …]
|
/aosp12/frameworks/native/libs/binder/include/binder/ |
H A D | SafeInterface.h | 237 using ParamTuple = std::tuple<Params...>; 241 using ParamTuple = std::tuple<Params...>; 359 struct ArgsMatchParams<std::tuple<Args...>, std::tuple<Params...>> { 367 if (!DecayedElementsMatch<Index, std::tuple<Args...>, std::tuple<Params...>>::value) { 524 struct RemoveFirst<std::tuple<T, Args...>> { 525 using type = std::tuple<Args...>; 546 struct RawConverter<std::tuple<Converted...>, std::tuple<>> { 547 using type = std::tuple<Converted...>; 565 class InputReader<std::tuple<Params...>> { 636 struct MethodCaller<std::tuple<Params...>> { [all …]
|
/aosp12/hardware/google/graphics/common/libhwc2.1/libdrmresource/include/ |
H A D | drmproperty.h | 45 std::tuple<uint64_t, int> GetEnumValueWithName(std::string name) const; 50 std::tuple<int, uint64_t> value() const; 54 std::tuple<int, uint64_t> range_min() const; 55 std::tuple<int, uint64_t> range_max() const;
|
/aosp12/packages/modules/NeuralNetworks/runtime/ |
H A D | ExecutionBuilder.h | 151 virtual std::tuple<int, std::vector<OutputShape>, Timing> computeInternal( 154 virtual std::tuple<int, int, ExecuteFencedInfoCallback> computeFencedInternal( 268 std::tuple<int, std::vector<OutputShape>, Timing> computeInternal( 271 std::tuple<int, int, ExecuteFencedInfoCallback> computeFencedInternal( 284 std::tuple<int, std::vector<OutputShape>, Timing> computeInternal( 287 std::tuple<int, int, ExecuteFencedInfoCallback> computeFencedInternal( 381 std::tuple<int, std::vector<OutputShape>, Timing> compute( 386 std::tuple<int, std::vector<OutputShape>, Timing> computeOnCpuFallback(); 392 std::tuple<int, int, ExecuteFencedInfoCallback> computeFenced(
|
/aosp12/frameworks/av/services/camera/libcameraservice/api2/ |
H A D | DepthCompositeStream.h | 92 std::vector<std::tuple<size_t, size_t>>* depthSizes /*out*/); 94 const std::vector<std::tuple<size_t, size_t>>& supporedDepthSizes, 97 const std::vector<std::tuple<size_t, size_t>> &depthSizes, 98 const std::vector<std::tuple<size_t, size_t>> &depthSizesMaximumResolution, 141 std::vector<std::tuple<size_t, size_t>> mSupportedDepthSizes; 142 std::vector<std::tuple<size_t, size_t>> mSupportedDepthSizesMaximumResolution;
|
/aosp12/system/security/keystore/include/keystore/ |
H A D | keystore_promises.h | 40 class CallbackPromise<BnInterface, std::tuple<Results...>> 41 : public BnInterface, public std::promise<std::tuple<Results...>> { 59 std::tuple<::android::security::keystore::KeystoreResponse, 67 std::tuple<::android::security::keystore::KeystoreResponse,
|
/aosp12/hardware/google/pixel/vibrator/cs40l25/tests/ |
H A D | types.h | 26 using EffectQueue = std::tuple<std::string, EffectDuration>; 27 using EffectTuple = std::tuple<::aidl::android::hardware::vibrator::Effect, 30 using QueueEffect = std::tuple<EffectIndex, EffectLevel>;
|
/aosp12/system/teeui/libteeui/src/ |
H A D | generic_messages.cpp | 22 std::tuple<ReadStream, uint32_t> readU32(ReadStream in) { in readU32() 29 std::tuple<ReadStream, Command> readCommand(ReadStream in) { in readCommand() 38 std::tuple<ReadStream, Protocol> readProtocol(ReadStream in) { in readProtocol()
|
/aosp12/frameworks/base/tools/dump-coverage/ |
H A D | dump_coverage.cc | 24 using std::tuple; 45 static tuple<jclass, jobject> GetJavaAgent(JNIEnv* env) { in GetJavaAgent() 60 return tuple(java_agent_class, java_agent_instance); in GetJavaAgent() 149 static tuple<std::string, std::string> SplitOnColon(const std::string& options) { in SplitOnColon() 159 return tuple(command, args); in SplitOnColon()
|