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

  /external/libbrillo/brillo/
type_name_undecorate.cc 35 std::string GetUndecoratedTypeNameForTag(const char* type_tag) {
38 return UndecorateTypeName(type_tag);
44 const char* pos = std::strstr(type_tag, token);
46 return type_tag;
type_name_undecorate.h 59 BRILLO_EXPORT std::string GetUndecoratedTypeNameForTag(const char* type_tag);
  /frameworks/opt/net/wifi/tests/wifitests/jni/
wifi_hal_mock.cpp 50 static constexpr const char* const type_tag = "type"; member in namespace:android::hal_json_tags
65 rapidjson::Value(hal_json_tags::type_tag,
66 strlen(hal_json_tags::type_tag)),
81 rapidjson::Value(hal_json_tags::type_tag,
82 strlen(hal_json_tags::type_tag)),
  /external/autotest/server/site_tests/hardware_MemoryIntegrity/
hardware_MemoryIntegrity.py 32 return utils.read_keyval(keyval_path, type_tag='perf')['Size']
  /external/autotest/server/site_tests/platform_BootPerfServer/
platform_BootPerfServer.py 92 perf_keyvals = utils.read_keyval(src, type_tag='perf')
  /external/autotest/client/common_lib/
base_utils.py 472 def read_keyval(path, type_tag=None):
479 @param type_tag: If not None, only keyvals with key ending
480 in a suffix {type_tag} will be collected.
487 if type_tag:
488 pattern = r'^([-\.\w]+)\{%s\}=(.*)$' % type_tag
513 def write_keyval(path, dictionary, type_tag=None, tap_report=None):
519 If type_tag is None, then the key must be composed of alphanumeric
521 null then the keys must also have "{type_tag}" as a suffix. At
522 the moment the only valid values of type_tag are "attr" and "perf".
526 @param type_tag: see text abov
    [all...]
base_utils_unittest.py 280 type_tag=None):
287 if type_tag is None:
290 base_utils.write_keyval(filename, dictionary, type_tag)
294 def write_keyval_file(self, dictionary, type_tag=None):
296 return self.write_keyval("file", dictionary, type_tag=type_tag)
325 type_tag="perf")
328 {"a": 1, "b": 2}, type_tag="perf")
base_job.py 759 def record_keyval(self, path, dictionary, type_tag=None):
765 If type_tag is None, then the key must be composed of alphanumeric
767 null then the keys must also have "{type_tag}" as a suffix. At
768 the moment the only valid values of type_tag are "attr" and "perf".
772 @param type_tag: The type of the values
777 if type_tag is None:
780 if type_tag not in ('attr', 'perf'):
781 raise ValueError('Invalid type tag: %s' % type_tag)
782 escaped_tag = re.escape(type_tag)
    [all...]
test.py 174 utils.write_keyval(self.resultsdir, attr_dict, type_tag="attr",
179 utils.write_keyval(self.resultsdir, perf_dict, type_tag="perf",
    [all...]
  /art/runtime/jdwp/
jdwp_main.cc 637 << "@" << StringPrintf("%#" PRIx64, rhs.dex_pc) << " " << rhs.type_tag << "]";
643 lhs.class_id == rhs.class_id && lhs.type_tag == rhs.type_tag;
jdwp_expand_buf.cc 180 expandBufAdd1(buf, location.type_tag);
jdwp_request.cc 146 location.type_tag = ReadTypeTag();
jdwp_handler.cc 161 JDWP::JdwpTypeTag type_tag; local
163 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr);
168 expandBufAdd1(pReply, type_tag);
361 JDWP::JdwpTypeTag type_tag; local
364 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor);
369 expandBufAdd1(pReply, type_tag);
462 JDWP::JdwpTypeTag type_tag; local
464 JDWP::JdwpError status = Dbg::GetClassInfo(refTypeId, &type_tag, &class_status, nullptr);
    [all...]
jdwp.h 85 JdwpTypeTag type_tag; member in struct:art::JDWP::JdwpLocation
jdwp_event.cc 977 JDWP::JdwpTypeTag type_tag = Dbg::GetTypeTag(field->GetDeclaringClass()); local
    [all...]
  /art/runtime/
debugger.cc 1005 JDWP::JdwpTypeTag type_tag = GetTypeTag(c); local
1077 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); local
    [all...]

Completed in 247 milliseconds