Home
last modified time | relevance | path

Searched refs:func_name (Results 1 – 12 of 12) sorted by relevance

/test/vts/compilation_tools/vtsc/test/golden/DRIVER/
DlibcV1.driver.cpp16 const char* func_name = func_msg->name().c_str(); in Fuzz() local
17 LOG(INFO) << "Function: " << func_name; in Fuzz()
18 if (!strcmp(func_name, "socket")) { in Fuzz()
32 if (!strcmp(func_name, "accept")) { in Fuzz()
46 if (!strcmp(func_name, "bind")) { in Fuzz()
60 if (!strcmp(func_name, "connect")) { in Fuzz()
74 if (!strcmp(func_name, "listen")) { in Fuzz()
85 if (!strcmp(func_name, "recv")) { in Fuzz()
102 if (!strcmp(func_name, "send")) { in Fuzz()
119 if (!strcmp(func_name, "fopen")) { in Fuzz()
[all …]
DNfc.driver.cpp145 const char* func_name = func_msg.name().c_str(); in CallFunction() local
150 if (!strcmp(func_name, "open")) { in CallFunction()
162 if (!strcmp(func_name, "write")) { in CallFunction()
177 if (!strcmp(func_name, "coreInitialized")) { in CallFunction()
191 if (!strcmp(func_name, "prediscover")) { in CallFunction()
200 if (!strcmp(func_name, "close")) { in CallFunction()
209 if (!strcmp(func_name, "controlGranted")) { in CallFunction()
218 if (!strcmp(func_name, "powerCycle")) { in CallFunction()
227 if (!strcmp(func_name, "notifySyspropsChanged")) { in CallFunction()
DTestMsgQ.driver.cpp213 const char* func_name = func_msg.name().c_str(); in CallFunction() local
218 if (!strcmp(func_name, "configureFmqSyncReadWrite")) { in CallFunction()
240 if (!strcmp(func_name, "getFmqUnsyncWrite")) { in CallFunction()
262 if (!strcmp(func_name, "requestWriteFmqSync")) { in CallFunction()
274 if (!strcmp(func_name, "requestReadFmqSync")) { in CallFunction()
286 if (!strcmp(func_name, "requestWriteFmqUnsync")) { in CallFunction()
298 if (!strcmp(func_name, "requestReadFmqUnsync")) { in CallFunction()
310 if (!strcmp(func_name, "requestBlockingRead")) { in CallFunction()
318 if (!strcmp(func_name, "requestBlockingReadDefaultEventFlagBits")) { in CallFunction()
326 if (!strcmp(func_name, "requestBlockingReadRepeat")) { in CallFunction()
[all …]
DMemoryTest.driver.cpp123 const char* func_name = func_msg.name().c_str(); in CallFunction() local
128 if (!strcmp(func_name, "haveSomeMemory")) { in CallFunction()
157 if (!strcmp(func_name, "fillMemory")) { in CallFunction()
183 if (!strcmp(func_name, "haveSomeMemoryBlock")) { in CallFunction()
196 if (!strcmp(func_name, "set")) { in CallFunction()
220 if (!strcmp(func_name, "get")) { in CallFunction()
235 if (!strcmp(func_name, "notifySyspropsChanged")) { in CallFunction()
DBar.driver.cpp659 const char* func_name = func_msg.name().c_str(); in CallFunction() local
664 if (!strcmp(func_name, "convertToBoolIfSmall")) { in CallFunction()
687 if (!strcmp(func_name, "doThis")) { in CallFunction()
695 if (!strcmp(func_name, "doThatAndReturnSomething")) { in CallFunction()
707 if (!strcmp(func_name, "doQuiteABit")) { in CallFunction()
725 if (!strcmp(func_name, "doSomethingElse")) { in CallFunction()
746 if (!strcmp(func_name, "doStuffAndReturnAString")) { in CallFunction()
758 if (!strcmp(func_name, "mapThisVector")) { in CallFunction()
780 if (!strcmp(func_name, "callMe")) { in CallFunction()
789 if (!strcmp(func_name, "useAnEnum")) { in CallFunction()
[all …]
DNfcClientCallback.driver.cpp90 const char* func_name = func_msg.name().c_str(); in CallFunction() local
95 if (!strcmp(func_name, "sendEvent")) { in CallFunction()
105 if (!strcmp(func_name, "sendData")) { in CallFunction()
116 if (!strcmp(func_name, "notifySyspropsChanged")) { in CallFunction()
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp680 string func_name = in GenerateDriverDeclForAttribute() local
684 out << "void " << func_name in GenerateDriverDeclForAttribute()
705 string func_name = in GenerateDriverImplForAttribute() local
710 out << "void " << func_name in GenerateDriverImplForAttribute()
818 string func_name = in GenerateDriverImplForTypedVariable() local
820 out << func_name << "(" << arg_value_name << ", &(" << arg_name in GenerateDriverImplForTypedVariable()
868 string func_name = "MessageTo" in GenerateDriverImplForTypedVariable() local
870 out << func_name << "(" << arg_value_name << ", &(" << arg_name in GenerateDriverImplForTypedVariable()
889 string func_name = "MessageTo" in GenerateDriverImplForTypedVariable() local
891 out << func_name << "(" << arg_value_name << ", &(" << arg_name in GenerateDriverImplForTypedVariable()
[all …]
/test/vts-testcase/kernel/encryption/
DKeymaster.cpp46 const std::string& func_name) { in logKeystore2ExceptionIfPresent() argument
51 LOG(ERROR) << "keystore2 Keystore " << func_name in logKeystore2ExceptionIfPresent()
55 LOG(ERROR) << "keystore2 Communication with Keystore " << func_name in logKeystore2ExceptionIfPresent()
/test/vts-testcase/fuzz/iface_fuzzer/
DProtoFuzzerStats.cpp33 void ProtoFuzzerStats::RegisterTouch(string iface_name, string func_name) { in RegisterTouch() argument
35 string key = iface_name + "::" + func_name; in RegisterTouch()
/test/vts/compilation_tools/vtsc/code_gen/fuzzer/
DHalHidlFuzzerCodeGen.cpp122 string func_name = func_spec.name(); in GenerateHalFunctionCall() local
123 out << "if (target_func == \"" << func_name << "\") {\n"; in GenerateHalFunctionCall()
/test/vts/utils/native/trace_processor/
DVtsTraceProcessor.cpp670 string func_name = record.func_msg().name(); in GetHalTraceSummary() local
681 if (found->api_stats.find(func_name) != found->api_stats.end()) { in GetHalTraceSummary()
682 found->api_stats[func_name]++; in GetHalTraceSummary()
685 found->api_stats[func_name] = 1; in GetHalTraceSummary()
689 api_stats[func_name] = 1; in GetHalTraceSummary()
/test/vts-testcase/fuzz/iface_fuzzer/include/
DProtoFuzzerStats.h32 void RegisterTouch(std::string iface_name, std::string func_name);