HomeSort by relevance Sort by last modified time
    Searched refs:record_type (Results 1 - 24 of 24) sorted by null

  /external/perfetto/src/profiling/memory/
wire_protocol.cc 52 iovecs[0].iov_base = const_cast<RecordType*>(&msg.record_type);
53 iovecs[0].iov_len = sizeof(msg.record_type);
55 PERFETTO_DCHECK(msg.record_type == RecordType::Malloc);
59 PERFETTO_DCHECK(msg.record_type == RecordType::Free);
111 RecordType* record_type; local
113 if (!ViewAndAdvance<RecordType>(&buf, &record_type, end)) {
120 out->record_type = *record_type;
122 if (*record_type == RecordType::Malloc) {
133 } else if (*record_type == RecordType::Free)
    [all...]
wire_protocol_unittest.cc 75 msg.record_type = RecordType::Malloc;
103 ASSERT_EQ(recv_msg.record_type, msg.record_type);
111 msg.record_type = RecordType::Free;
134 ASSERT_EQ(recv_msg.record_type, msg.record_type);
wire_protocol.h 127 RecordType record_type; member in struct:perfetto::profiling::WireMessage
client.cc 290 msg.record_type = RecordType::Malloc;
342 msg.record_type = RecordType::Free;
unwinding.cc 350 if (msg.record_type == RecordType::Malloc) {
360 } else if (msg.record_type == RecordType::Free) {
  /development/vndk/tools/header-checker/src/repr/json/
ir_dumper.h 36 static void AddRecordFields(JsonObject &record_type,
39 static void AddBaseSpecifiers(JsonObject &record_type,
42 static void AddVTableLayout(JsonObject &record_type,
ir_reader.cpp 126 GetRecordKind(const JsonObjectRef &record_type) {
127 std::string kind(record_type.GetString("record_kind"));
218 void JsonIRReader::ReadRecordFields(const JsonObjectRef &record_type,
220 for (auto &&field : record_type.GetObjects("fields")) {
228 void JsonIRReader::ReadBaseSpecifiers(const JsonObjectRef &record_type,
230 for (auto &&base_specifier : record_type.GetObjects("base_specifiers")) {
238 void JsonIRReader::ReadVTableLayout(const JsonObjectRef &record_type,
241 for (auto &&vtable_component : record_type.GetObjects("vtable_components")) {
292 JsonIRReader::RecordTypeJsonToIR(const JsonObjectRef &record_type) {
294 ReadTypeInfo(record_type, &record_type_ir)
    [all...]
ir_dumper.cpp 46 static void AddRecordKind(JsonObject &record_type,
49 record_type.Set("record_kind",
102 void IRToJsonConverter::AddRecordFields(JsonObject &record_type,
108 record_type.Set("fields", fields);
120 void IRToJsonConverter::AddBaseSpecifiers(JsonObject &record_type,
126 record_type.Set("base_specifiers", base_specifiers);
140 void IRToJsonConverter::AddVTableLayout(JsonObject &record_type,
147 record_type.Set("vtable_components", vtable_components);
156 JsonObject record_type; local
158 AddAccess(record_type, recordp->GetAccess())
    [all...]
ir_reader.h 153 static void ReadRecordFields(const JsonObjectRef &record_type,
156 static void ReadBaseSpecifiers(const JsonObjectRef &record_type,
159 static void ReadVTableLayout(const JsonObjectRef &record_type,
176 static RecordTypeIR RecordTypeJsonToIR(const JsonObjectRef &record_type);
  /external/google-breakpad/src/tools/python/
filter_syms.py 105 record_type = record.partition(' ')[0]
106 if record_type == 'FILE':
108 elif self._IsLineRecord(record_type):
155 def _IsLineRecord(self, record_type):
158 line = int(record_type, 16)
  /external/autotest/client/cros/nfc/
console.py 383 def _create_record_data(self, record_type, params):
384 if record_type == 'Text':
387 elif record_type == 'URI':
391 print_message('Writing record type "' + record_type +
400 def write_tag(self, tag, record_type, params):
405 @param record_type: The type of the record, e.g. Text or URI.
409 tag_data = self._create_record_data(record_type, params)
420 def push_to_device(self, device, record_type, params):
425 @param record_type: The type of the record, e.g. Text or URI.
429 record_data = self._create_record_data(record_type, params
    [all...]
  /external/mesa3d/src/compiler/glsl/
linker.h 156 * \param record_type Type of the record containing the field.
162 bool row_major, const glsl_type *record_type,
185 bool row_major, const glsl_type *record_type,
link_uniforms.cpp 107 const glsl_type *record_type,
125 if (record_type == NULL && t->is_record())
126 record_type = t;
162 record_type,
169 record_type = NULL;
179 if (record_type == NULL && t->fields.array->is_record())
180 record_type = t->fields.array;
199 record_type,
207 record_type = NULL;
211 this->visit_field(t, *name, row_major, record_type, packing, last_field)
    [all...]
  /external/autotest/client/site_tests/peerd_AdvertiseServices/
peerd_AdvertiseServices.py 103 def _ask_for_record(self, record_name, record_type):
108 @param record_type: one of dpkt.dns.DNS_*.
113 record_name, record_type)
116 record_name, record_type)
119 record_name, record_type, found_records[0].data)
122 record_name, record_type)
123 desired_records = [(record_name, record_type)]
  /development/vndk/tools/header-checker/src/repr/
ir_representation.cpp 105 void ModuleIR::AddRecordType(RecordTypeIR &&record_type) {
106 if (!IsLinkableMessageInExportedHeaders(&record_type)) {
110 std::move(record_type), &record_types_, &type_graph_);
ir_representation.h 850 void AddRecordType(RecordTypeIR &&record_type);
  /external/perfetto/src/trace_processor/
fuchsia_trace_parser.cc 60 uint32_t record_type = fuchsia_trace_utils::ReadField<uint32_t>(header, 0, 3); local
61 switch (record_type) {
135 record_type);
fuchsia_trace_tokenizer.cc 194 uint32_t record_type = fuchsia_trace_utils::ReadField<uint32_t>(header, 0, 3); local
195 switch (record_type) {
462 PERFETTO_DLOG("Skipping record of unknown type %d", record_type);
  /development/vndk/tools/header-checker/src/diff/
abi_diff.cpp 111 const repr::RecordTypeIR *record_type = nullptr; local
114 record_type = static_cast<const repr::RecordTypeIR *>(type);
115 if (record_type->IsAnonymous()) {
119 record_type->GetUniqueId(), record_type);
  /external/autotest/client/common_lib/hosts/
repair.py 151 def __init__(self, tag, record_type, dependencies):
154 self._record_tag = record_type + '.' + tag
    [all...]
  /external/autotest/frontend/afe/
rpc_utils.py     [all...]
  /external/linux-kselftest/tools/testing/selftests/net/
tls.c 727 char record_type = 100; local
746 *CMSG_DATA(cmsg) = record_type;
759 record_type = *((unsigned char *)CMSG_DATA(cmsg));
760 EXPECT_EQ(record_type, 100);
  /external/v8/tools/clang/plugins/
FindBadConstructsConsumer.cpp 59 CXXRecordDecl* record_type = field->getTypeSourceInfo() local
63 if (record_type) {
64 if (InTestingNamespace(record_type)) {
    [all...]
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp     [all...]

Completed in 969 milliseconds