Searched defs:Payload (Results 1 - 14 of 14) sorted by relevance

/external/libese/tools/ese_replay/
H A Dpayload.h26 struct Payload { struct
31 bool payload_init(struct Payload *p, uint32_t tx_len, uint32_t exp_len);
32 void payload_free(struct Payload *p);
33 bool payload_read(struct Payload *p, FILE *fp);
34 void payload_dump(const struct Payload *payload, FILE *fp);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.h34 struct Payload { struct in namespace:webrtc::RtpUtility
40 typedef std::map<int8_t, Payload*> PayloadTypeMap;
/external/skia/src/sksl/lex/
H A DRegexNode.h70 union Payload { union in struct:RegexNode
/external/skqp/src/sksl/lex/
H A DRegexNode.h70 union Payload { union in struct:RegexNode
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h120 /// \brief Payload interface to be specialized by each matcher type.
123 class Payload : public RefCountedBaseVPTR { class in class:clang::ast_matchers::dynamic::VariantMatcher
125 ~Payload() override;
212 explicit VariantMatcher(Payload *Value) : Value(Value) {}
220 IntrusiveRefCntPtr<const Payload> Value;
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp78 VariantMatcher::Payload::~Payload() {}
80 class VariantMatcher::SinglePayload : public VariantMatcher::Payload {
111 class VariantMatcher::PolymorphicPayload : public VariantMatcher::Payload {
177 class VariantMatcher::VariadicOpPayload : public VariantMatcher::Payload {
/external/v8/src/snapshot/
H A Dsnapshot-common.cc221 Vector<const byte> SnapshotData::Payload() const { function in class:v8::internal::SnapshotData
H A Dcode-serializer.cc451 Vector<const byte> SerializedCodeData::Payload() const { function in class:v8::internal::SerializedCodeData
/external/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h53 storage_type Buckets, storage_type Payload, storage_type Base,
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
52 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, storage_type Buckets, storage_type Payload, storage_type Base, const Info &InfoObj) argument
/external/llvm/include/llvm/Support/
H A DError.h173 Error(std::unique_ptr<ErrorInfoBase> Payload) { argument
174 setPtr(Payload.release());
240 return Payload;
248 Payload = EI;
276 ErrorInfoBase *Payload; member in class:llvm::Error
350 for (auto &Payload : E2List.Payloads)
351 E1List.Payloads.push_back(std::move(Payload));
477 inline Error handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload) { argument
478 return Error(std::move(Payload));
482 Error handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload, argument
[all...]
H A DOnDiskHashTable.h432 const unsigned char *Payload; member in class:llvm::OnDiskIterableChainedHashTable
494 const unsigned char *Payload,
498 Payload(Payload) {}
538 return key_iterator(Payload, this->getNumEntries(), &this->getInfoObj());
581 return data_iterator(Payload, this->getNumEntries(), &this->getInfoObj());
595 /// \param Payload is the beginning of the data contained in the table. This
603 Create(const unsigned char *Buckets, const unsigned char *const Payload, argument
610 Buckets, Payload, Base, InfoObj);
492 OnDiskIterableChainedHashTable(offset_type NumBuckets, offset_type NumEntries, const unsigned char *Buckets, const unsigned char *Payload, const unsigned char *Base, const Info &InfoObj = Info()) argument
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DError.h167 Error() : Payload(nullptr) {
182 Error(Error &&Other) : Payload(nullptr) {
189 Error(std::unique_ptr<ErrorInfoBase> Payload) { argument
190 setPtr(Payload.release());
254 reinterpret_cast<uintptr_t>(Payload) &
260 Payload = reinterpret_cast<ErrorInfoBase*>(
263 (reinterpret_cast<uintptr_t>(Payload) & 0x1));
265 Payload = EI;
271 return (reinterpret_cast<uintptr_t>(Payload) & 0x1) == 0;
278 Payload
291 ErrorInfoBase *Payload; member in class:llvm::Error
497 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload) argument
502 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload, HandlerT &&Handler, HandlerTs &&... Handlers) argument
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSTLExtras.h297 Optional<PayloadType> Payload; member in class:llvm::filter_iterator
300 assert(Payload && "Payload should be engaged when findNextValid is called");
301 while (this->I != Payload->End && !Payload->Pred(*this->I))
309 Payload(PayloadType{std::move(End), std::move(Pred)}) {
313 // Construct the end iterator. It's not incrementable, so Payload doesn't
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
H A DUnittestProto3.cs157 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.NestedTestAllTypes), global::Google.Protobuf.TestProtos.NestedTestAllTypes.Parser, new[]{ "Child", "Payload", "RepeatedChild" }, null, null, null),
1676 Payload = other.payload_ != null ? other.Payload.Clone() : null;
1697 public global::Google.Protobuf.TestProtos.TestAllTypes Payload { property in class:Google.Protobuf.TestProtos.NestedTestAllTypes
1725 if (!object.Equals(Payload, other.Payload)) return false;
1733 if (payload_ != null) hash ^= Payload.GetHashCode();
1749 output.WriteMessage(Payload);
1760 size += 1 + pb::CodedOutputStream.ComputeMessageSize(Payload);
1780 Payload
[all...]

Completed in 1004 milliseconds