Home
last modified time | relevance | path

Searched refs:errInfo (Results 1 – 6 of 6) sorted by relevance

/developtools/hiperf/src/
Dperf_file_writer.cpp44 char errInfo[ERRINFOLEN] = { 0 }; in Open() local
45 strerror_r(errno, errInfo, ERRINFOLEN); in Open()
47 errInfo); in Open()
54 char errInfo[ERRINFOLEN] = { 0 }; in Open() local
55 strerror_r(errno, errInfo, ERRINFOLEN); in Open()
56 printf("can't create file(%s). %d:%s\n", fileName.c_str(), errno, errInfo); in Open()
97 char errInfo[ERRINFOLEN] = { 0 }; in Close() local
98 strerror_r(errno, errInfo, ERRINFOLEN); in Close()
100 fileName_.c_str(), errno, errInfo); in Close()
103 char errInfo[ERRINFOLEN] = { 0 }; in Close() local
[all …]
Dsubcommand_record.cpp936 char errInfo[ERRINFOLEN] = { 0 }; in ClientCommandResponse() local
937 strerror_r(errno, errInfo, ERRINFOLEN); in ClientCommandResponse()
939 errInfo); in ClientCommandResponse()
946 char errInfo[ERRINFOLEN] = { 0 }; in ClientCommandResponse() local
947 strerror_r(errno, errInfo, ERRINFOLEN); in ClientCommandResponse()
949 errInfo); in ClientCommandResponse()
1072 char errInfo[ERRINFOLEN] = { 0 }; in CreateFifoServer() local
1082 strerror_r(errno, errInfo, ERRINFOLEN); in CreateFifoServer()
1083 HLOGE("create fifo file failed. %d:%s", errno, errInfo); in CreateFifoServer()
1089 strerror_r(errno, errInfo, ERRINFOLEN); in CreateFifoServer()
[all …]
Dperf_events.cpp979 char errInfo[ERRINFOLEN] = { 0 }; in CreateFdEvents() local
980 strerror_r(errno, errInfo, ERRINFOLEN); in CreateFdEvents()
982 eventItem.configName.c_str(), cpus_[icpu], errno, errInfo); in CreateFdEvents()
984 char errInfo[ERRINFOLEN] = { 0 }; in CreateFdEvents() local
985 strerror_r(errno, errInfo, ERRINFOLEN); in CreateFdEvents()
987 eventItem.configName.c_str(), cpus_[icpu], errno, errInfo); in CreateFdEvents()
1093 char errInfo[ERRINFOLEN] = {0}; in CreateMmap() local
1094 strerror_r(errno, errInfo, ERRINFOLEN); in CreateMmap()
1095 perror("errno:%d, errstr:%s", errno, errInfo); in CreateMmap()
/developtools/hiperf/interfaces/innerkits/native/src/
Dhiperf_client.cpp450 char errInfo[ERRINFOLEN] = { 0 }; in Start() local
451 strerror_r(errno, errInfo, ERRINFOLEN); in Start()
452 HIPERF_HILOGI(MODULE_CPP_API, "failed to create pipe: %" HILOG_PUBLIC "s", errInfo); in Start()
455 char errInfo[ERRINFOLEN] = { 0 }; in Start() local
456 strerror_r(errno, errInfo, ERRINFOLEN); in Start()
457 HIPERF_HILOGI(MODULE_CPP_API, "failed to create pipe: %" HILOG_PUBLIC "s", errInfo); in Start()
465 char errInfo[ERRINFOLEN] = { 0 }; in Start() local
466 strerror_r(errno, errInfo, ERRINFOLEN); in Start()
467 HIPERF_HILOGI(MODULE_CPP_API, "failed to fork: %" HILOG_PUBLIC "s", errInfo); in Start()
528 char errInfo[ERRINFOLEN] = { 0 }; in ChildRunExecv() local
[all …]
/developtools/hiperf/demo/cpp/
Dhiperf_example_cmd.cpp483 char errInfo[ERRINFOLEN] = { 0 }; in main() local
484 strerror_r(errno, errInfo, ERRINFOLEN); in main()
485 printf("Set CPU(%d) affinity failure, ERROR:%s\n", option.boundCpu, errInfo); in main()
/developtools/profiler/host/smartperf/client/client_command/
Dsp_task.cpp123 std::string errInfo = EXCEPTION_MSG_MAP.at(exMsg); in InitTask() local
124 LOGI("SPTask::InitTask error(%s)", errInfo.c_str()); in InitTask()
125 std::cout << "ExceptionMsg:" << errInfo << std::endl; in InitTask()