Searched defs:type_name (Results 1 - 7 of 7) sorted by relevance

/system/extras/simpleperf/
H A Dcmd_list.cpp30 static void PrintEventTypesOfType(uint32_t type, const std::string& type_name, argument
32 printf("List of %s:\n", type_name.c_str());
H A Dcmd_stat.cpp298 const std::string& type_name = summary.event_type->event_type.name; local
300 if (type_name == "task-clock") {
305 if (type_name == "cpu-clock") {
308 if (type_name == "cpu-cycles") {
312 if (type_name == "instructions" && summary.count != 0) {
320 if (android::base::EndsWith(type_name, "-misses")) {
322 if (type_name == "cache-misses") {
324 } else if (type_name == "branch-misses") {
327 s = type_name.substr(0, type_name
[all...]
/system/tools/aidl/tests/
H A Daidl_test_client_nullables.cpp92 bool ConfirmNullableType(const sp<ITestService>& s, string type_name, argument
96 cout << "... Confirming nullables for " << type_name << " ..." << endl;
103 cerr << "Could not repeat nullable " << type_name << "." << endl;
108 cerr << "Got back null when repeating " << type_name << "." << endl;
113 cerr << "Got back a non-matching value when repeating " << type_name
122 cerr << "Could not repeat null as " << type_name << "." << endl;
127 cerr << "Got back a value when sent null for " << type_name << "."
/system/tools/aidl/
H A Dtype_namespace.cpp73 int kind, const string& package, const string& type_name,
76 type_name_(type_name),
77 canonical_name_((package.empty()) ? type_name
78 : package + "." + type_name),
72 ValidatableType( int kind, const string& package, const string& type_name, const string& decl_file, int decl_line) argument
H A Dtype_cpp.cpp532 bool TypeNamespace::AddListType(const std::string& type_name) { argument
533 const Type* contained_type = FindTypeByCanonicalName(type_name);
535 LOG(ERROR) << "Cannot create List<" << type_name << "> because contained "
540 LOG(ERROR) << "Cannot create List<" << type_name << "> because contained "
554 LOG(ERROR) << "aidl-cpp does not yet support List<" << type_name << ">";
/system/sepolicy/tools/
H A Dcheckfc.c101 static bool is_type_of_attribute_set(policydb_t *policydb, const char *type_name, argument
104 struct type_datum *type = hashtab_search(policydb->p_types.table, (char *)type_name);
106 fprintf(stderr, "Error: \"%s\" is not defined in this policy.\n", type_name);
111 fprintf(stderr, "Error: \"%s\" is not a type in this policy.\n", type_name);
164 const char *type_name = sepol_context_get_type(ctx); local
168 res = !is_type_of_attribute_set(global_state.sepolicy.pdb, type_name,
171 fprintf(stderr, "Error: type \"%s\" is not of set: ", type_name);
/system/media/camera/src/
H A Dcamera_metadata.c918 const char *type_name; local
920 type_name = "unknown";
922 type_name = camera_metadata_type_names[entry->type];
929 type_name,

Completed in 138 milliseconds