Home
last modified time | relevance | path

Searched refs:tempChar (Results 1 - 4 of 4) sorted by relevance

/base/telephony/core_service/services/sim/include/
H A Dsim_char_decode.h61 char tempChar[ENCODE_CHAR_LENGTH] = {0}; in CharCodeToSequence() local
62 int contentLen = sizeof(tempChar); in CharCodeToSequence()
65 if (memset_s(tempChar, contentLen, 0x00, contentLen) != EOK) { in CharCodeToSequence()
71 if (strcat_s(tempChar, contentLen, flag) != EOK) { in CharCodeToSequence()
85 if (snprintf_s(tempChar + flagLen + (i * step), len - 1, len - 1, in CharCodeToSequence()
95 std::string result(tempChar); in CharCodeToSequence()
/base/telephony/core_service/services/sim/src/
H A Doperator_file_parser.cpp166 char *tempChar = nullptr; in ParseOperatorConfigFromJson() local
170 tempChar = cJSON_PrintUnformatted(value); in ParseOperatorConfigFromJson()
171 tempConfig_[value->string] = tempChar != nullptr ? tempChar : ""; in ParseOperatorConfigFromJson()
172 if (tempChar != nullptr) { in ParseOperatorConfigFromJson()
173 free(tempChar); in ParseOperatorConfigFromJson()
176 tempChar = cJSON_Print(value); in ParseOperatorConfigFromJson()
177 configValue[Str8ToStr16(value->string)] = tempChar != nullptr ? Str8ToStr16(tempChar) : u""; in ParseOperatorConfigFromJson()
180 if (tempChar ! in ParseOperatorConfigFromJson()
[all...]
/base/tee/tee_client/services/cadaemon/src/ca_daemon/
H A Dcadaemon_stub.cpp89 static bool GetChar(MessageParcel &data, char tempChar[], const char **str) in GetChar() argument
106 if (strcpy_s(tempChar, PATH_MAX + 1, tempStr.c_str()) != EOK) { in GetChar()
110 *str = tempChar; in GetChar()
125 char tempChar[PATH_MAX + 1] = { 0 }; in InitContextRecvProc() local
126 if (!GetChar(data, tempChar, &name)) { in InitContextRecvProc()
342 char tempChar[PATH_MAX + 1] = { 0 }; in OpenSessionRecvProc() local
343 retTmp = GetChar(data, tempChar, &taPath); in OpenSessionRecvProc()
556 char tempChar[PATH_MAX + 1] = {0}; in SendSecFileRecvProc() local
557 if (!GetChar(data, tempChar, &path)) { in SendSecFileRecvProc()
/base/telephony/telephony_data/common/src/
H A Dparser_util.cpp628 char *tempChar = cJSON_PrintUnformatted(value); in IsNeedInsertToTable() local
629 if (tempChar == nullptr) { in IsNeedInsertToTable()
632 std::string res = tempChar; in IsNeedInsertToTable()
633 free(tempChar); in IsNeedInsertToTable()
634 tempChar = nullptr; in IsNeedInsertToTable()

Completed in 3 milliseconds