Home
last modified time | relevance | path

Searched full:pstr (Results 1 - 25 of 114) sorted by relevance

12345

/third_party/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h27 PSTR ModuleName;
47 typedef BOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
48 typedef BOOL (CALLBACK *PFINDFILEINPATHCALLBACK)(PSTR filename,PVOID context);
49 typedef BOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
59 HANDLE IMAGEAPI FindDebugInfoFile(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath);
60 HANDLE IMAGEAPI FindDebugInfoFileEx(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePat
[all...]
/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/
H A Dwifi_hal_crpc_chip.c130 char *pstr = NULL; in RpcGetIface() local
136 pstr = (char *)calloc(len, sizeof(char)); in RpcGetIface()
137 if (pstr == NULL) { in RpcGetIface()
140 if (ReadStr(context, pstr, len) != 0) { in RpcGetIface()
141 free(pstr); in RpcGetIface()
142 pstr = NULL; in RpcGetIface()
146 WifiErrorNo err = GetIface((pstr == NULL) ? ifname : pstr, &wifiIface); in RpcGetIface()
156 if (pstr != NULL) { in RpcGetIface()
157 free(pstr); in RpcGetIface()
195 char *pstr = NULL; RpcRemoveIface() local
[all...]
/base/telephony/ril_adapter/services/vendor/src/
H A Dat_network.c627 static int32_t MoveLeftBracket(char **pStr) in MoveLeftBracket() argument
629 if (*pStr == NULL) { in MoveLeftBracket()
630 TELEPHONY_LOGE("pStr is nullptr"); in MoveLeftBracket()
633 *pStr = strchr(*pStr, '('); in MoveLeftBracket()
634 if (*pStr == NULL) { in MoveLeftBracket()
635 TELEPHONY_LOGE("pStr is nullptr"); in MoveLeftBracket()
638 (*pStr)++; in MoveLeftBracket()
864 char *pStr = (char *)str; in ParseCellInfoGsm() local
867 TELEPHONY_LOGD("ParseCellInfoGsm %{public}s", pStr); in ParseCellInfoGsm()
901 char *pStr = (char *)str; ParseCellInfoLte() local
935 char *pStr = (char *)str; ParseCellInfoWcdma() local
966 char *pStr = (char *)str; ParseCellInfoCdma() local
1012 char *pStr = (char *)str; ParseCellInfoTdscdma() local
1058 char *pStr = (char *)str; ParseCellInfoNr() local
1087 char *pStr = (char *)str; ParseCellInfos() local
1451 char *pStr = strsep(&str, ";"); ProcessCurrentCellList() local
[all...]
H A Dat_call.c123 char *pStr = (char *)str; in ReportCallStateUpdated() local
130 if (SkipATPrefix(&pStr) < 0) { in ReportCallStateUpdated()
133 if (NextInt(&pStr, &callId) < 0) { in ReportCallStateUpdated()
136 if (NextInt(&pStr, &state) < 0) { in ReportCallStateUpdated()
139 if (NextInt(&pStr, &voiceDomain) < 0) { in ReportCallStateUpdated()
151 char *pStr = (char *)str; in ReportSrvccStatusUpdate() local
156 if (SkipATPrefix(&pStr) < 0) { in ReportSrvccStatusUpdate()
159 if (err == HRIL_ERR_SUCCESS && NextInt(&pStr, &srvccStatus.status) < 0) { in ReportSrvccStatusUpdate()
172 char *pStr = (char *)str; in ReportCsChannelInfo() local
179 if (SkipATPrefix(&pStr) < in ReportCsChannelInfo()
221 char *pStr = (char *)str; ReportEmergencyNumberList() local
260 char *pStr = (char *)str; ReportCallUssdNotice() local
[all...]
H A Dvendor_util.c397 char *pStr = str; in ParseReportError() local
399 if (pStr == NULL) { in ParseReportError()
403 if (!SkipATPrefix(&pStr)) { in ParseReportError()
404 NextInt(&pStr, &ret); in ParseReportError()
417 char *pStr = response->result; in GetReportErrorInfo() local
418 if (ReportStrWith(pStr, "+CME ERROR:")) { in GetReportErrorInfo()
420 } else if (ReportStrWith(pStr, "+CMS ERROR:")) { in GetReportErrorInfo()
425 ret = ParseReportError(pStr); in GetReportErrorInfo()
H A Dat_data.c126 char *pStr = NULL; in ParsePdpCmd() local
132 pStr = str; in ParsePdpCmd()
134 if (SkipATPrefix(&pStr) < 0) { in ParsePdpCmd()
137 if (NextInt(&pStr, &outData->cid) < 0) { in ParsePdpCmd()
140 if (NextInt(&pStr, &outData->active) < 0) { in ParsePdpCmd()
145 if (SkipATPrefix(&pStr) < 0) { in ParsePdpCmd()
148 if (NextInt(&pStr, &outData->cid) < 0) { in ParsePdpCmd()
151 if (NextStr(&pStr, &outData->type) < 0) { in ParsePdpCmd()
395 char *pStr = NULL; in QueryAllSupportPDNInfos() local
410 pStr in QueryAllSupportPDNInfos()
[all...]
/third_party/skia/tools/
H A Dwin_lcid.cpp11 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) { in MyFuncLocaleEx() argument
15 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE); in MyFuncLocaleEx()
17 wprintf(L"Locale %s had error %d\n", pStr, GetLastError()); in MyFuncLocaleEx()
21 LCID lcid = LocaleNameToLCID(pStr, nullptr); in MyFuncLocaleEx()
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer); in MyFuncLocaleEx()
/base/account/os_account/frameworks/domain_account/test/moduletest/src/
H A Dmock_domain_so_plugin.cpp29 static void SetPluginString(const std::string &str, PluginString &pStr) in SetPluginString() argument
33 pStr.data = nullptr; in SetPluginString()
34 pStr.length = 0; in SetPluginString()
37 pStr.data = strdup(str.c_str()); in SetPluginString()
38 if (pStr.data == nullptr) { in SetPluginString()
40 pStr.length = 0; in SetPluginString()
43 pStr.length = str.length(); in SetPluginString()
/third_party/node/deps/icu-small/source/common/
H A Duniset_closure.cpp280 const UnicodeString *pStr = (const UnicodeString *) strings->elementAt(j); in closeOverCaseInsensitive() local
282 if (scfString(*pStr, str)) { in closeOverCaseInsensitive()
283 foldSet.remove(*pStr).add(str); in closeOverCaseInsensitive()
286 str = *pStr; in closeOverCaseInsensitive()
338 const UnicodeString *pStr = (const UnicodeString *) strings->elementAt(j); in closeOverAddCaseMappings() local
339 (str = *pStr).toLower(root); in closeOverAddCaseMappings()
342 (str = *pStr).toTitle(bi, root); in closeOverAddCaseMappings()
345 (str = *pStr).toUpper(root); in closeOverAddCaseMappings()
347 (str = *pStr).foldCase(); in closeOverAddCaseMappings()
/third_party/node/deps/openssl/openssl/crypto/http/
H A Dhttp_lib.c18 static void init_pstring(char **pstr) in init_pstring() argument
20 if (pstr != NULL) { in init_pstring()
21 *pstr = NULL; in init_pstring()
38 static void free_pstring(char **pstr) in free_pstring() argument
40 if (pstr != NULL) { in free_pstring()
41 OPENSSL_free(*pstr); in free_pstring()
42 *pstr = NULL; in free_pstring()
/third_party/openssl/crypto/http/
H A Dhttp_lib.c18 static void init_pstring(char **pstr) in init_pstring() argument
20 if (pstr != NULL) { in init_pstring()
21 *pstr = NULL; in init_pstring()
31 static void free_pstring(char **pstr) in free_pstring() argument
33 if (pstr != NULL) { in free_pstring()
34 OPENSSL_free(*pstr); in free_pstring()
35 *pstr = NULL; in free_pstring()
/third_party/icu/icu4c/source/common/
H A Duniset_closure.cpp223 const UnicodeString *pStr; in closeOver() local
226 pStr = (const UnicodeString *) strings->elementAt(j); in closeOver()
227 (str = *pStr).toLower(root); in closeOver()
230 (str = *pStr).toTitle(bi, root); in closeOver()
233 (str = *pStr).toUpper(root); in closeOver()
235 (str = *pStr).foldCase(); in closeOver()
/third_party/skia/third_party/externals/icu/source/common/
H A Duniset_closure.cpp223 const UnicodeString *pStr; in closeOver() local
226 pStr = (const UnicodeString *) strings->elementAt(j); in closeOver()
227 (str = *pStr).toLower(root); in closeOver()
230 (str = *pStr).toTitle(bi, root); in closeOver()
233 (str = *pStr).toUpper(root); in closeOver()
235 (str = *pStr).foldCase(); in closeOver()
/third_party/ffmpeg/libavutil/
H A Davstring.c243 const char *pstr2, *pstr = str; in av_strireplace() local
248 while ((pstr2 = av_stristr(pstr, from))) { in av_strireplace()
249 av_bprint_append_data(&pbuf, pstr, pstr2 - pstr); in av_strireplace()
250 pstr = pstr2 + fromlen; in av_strireplace()
253 av_bprint_append_data(&pbuf, pstr, strlen(pstr)); in av_strireplace()
/third_party/node/deps/openssl/openssl/crypto/dsa/
H A Ddsa_backend.c130 const ASN1_STRING *pstr; in ossl_dsa_key_from_pkcs8() local
148 pstr = pval; in ossl_dsa_key_from_pkcs8()
149 pm = pstr->data; in ossl_dsa_key_from_pkcs8()
150 pmlen = pstr->length; in ossl_dsa_key_from_pkcs8()
/third_party/openssl/crypto/dsa/
H A Ddsa_backend.c130 const ASN1_STRING *pstr; in ossl_dsa_key_from_pkcs8() local
148 pstr = pval; in ossl_dsa_key_from_pkcs8()
149 pm = pstr->data; in ossl_dsa_key_from_pkcs8()
150 pmlen = pstr->length; in ossl_dsa_key_from_pkcs8()
/third_party/cups-filters/filter/foomatic-rip/
H A Dutil.c84 const char *pstr; in endswith() local
89 pstr = &str[slen - plen]; in endswith()
90 return strcmp(pstr, postfix) == 0; in endswith()
226 char *pstr = str; in strrepl_nodups() local
230 while (*pstr) { in strrepl_nodups()
231 if (strchr(chars, *pstr) || *pstr == repl) { in strrepl_nodups()
239 *p = *pstr; in strrepl_nodups()
243 pstr++; in strrepl_nodups()
863 char *pstr; in dstrendswith() local
[all...]
/third_party/python/Modules/
H A Dfcntlmodule.c161 Py_buffer pstr; in fcntl_ioctl_impl() local
172 if (PyArg_Parse(ob_arg, "w*:ioctl", &pstr)) { in fcntl_ioctl_impl()
174 str = pstr.buf; in fcntl_ioctl_impl()
175 len = pstr.len; in fcntl_ioctl_impl()
189 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
211 PyBuffer_Release(&pstr); /* No further access to str below this point */ in fcntl_ioctl_impl()
225 if (PyArg_Parse(ob_arg, "s*:ioctl", &pstr)) { in fcntl_ioctl_impl()
226 str = pstr.buf; in fcntl_ioctl_impl()
227 len = pstr.len; in fcntl_ioctl_impl()
229 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_ameth.c52 ASN1_STRING *pstr = NULL; in eckey_param2type() local
53 pstr = ASN1_STRING_new(); in eckey_param2type()
54 if (pstr == NULL) in eckey_param2type()
56 pstr->length = i2d_ECParameters(ec_key, &pstr->data); in eckey_param2type()
57 if (pstr->length <= 0) { in eckey_param2type()
58 ASN1_STRING_free(pstr); in eckey_param2type()
62 *ppval = pstr; in eckey_param2type()
/third_party/openssl/crypto/ec/
H A Dec_ameth.c52 ASN1_STRING *pstr = NULL; in eckey_param2type() local
53 pstr = ASN1_STRING_new(); in eckey_param2type()
54 if (pstr == NULL) in eckey_param2type()
56 pstr->length = i2d_ECParameters(ec_key, &pstr->data); in eckey_param2type()
57 if (pstr->length <= 0) { in eckey_param2type()
58 ASN1_STRING_free(pstr); in eckey_param2type()
62 *ppval = pstr; in eckey_param2type()
/foundation/multimedia/drm_framework/frameworks/native/test/common/src/
H A Dhttp.cpp28 std::string *pstr = (std::string *)userp; in HttpCurlWriteStrData() local
29 if (pstr != nullptr) { in HttpCurlWriteStrData()
30 pstr->append((const char *)buffer, realSize); in HttpCurlWriteStrData()
/third_party/node/deps/openssl/openssl/crypto/dh/
H A Ddh_backend.c194 const ASN1_STRING *pstr; in ossl_dh_key_from_pkcs8() local
210 pstr = pval; in ossl_dh_key_from_pkcs8()
211 pm = pstr->data; in ossl_dh_key_from_pkcs8()
212 pmlen = pstr->length; in ossl_dh_key_from_pkcs8()
/third_party/openssl/crypto/dh/
H A Ddh_backend.c194 const ASN1_STRING *pstr; in ossl_dh_key_from_pkcs8() local
210 pstr = pval; in ossl_dh_key_from_pkcs8()
211 pm = pstr->data; in ossl_dh_key_from_pkcs8()
212 pmlen = pstr->length; in ossl_dh_key_from_pkcs8()
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/textinput/
H A Dtextinput_oncut_test.cpp69 OH_LOG_Print(LOG_APP, LOG_INFO, LOG_PRINT_DOMAIN, "TextInputOnCutTest", "OnEventReceive pStr: %{public}s", in OnEventReceive()
70 result->pStr); in OnEventReceive()
71 if (::strcmp(result->pStr, TEXT_INPUT_ON_CUT_TEST_STRING) == 0) { in OnEventReceive()
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/textarea/
H A Dtextarea_onpaste_test.cpp80 OH_LOG_Print(LOG_APP, LOG_INFO, LOG_PRINT_DOMAIN, "TextAreaOnPasteTest", "OnEventReceive pStr: %{public}s", in OnEventReceive()
81 result->pStr); in OnEventReceive()
82 if (::strcmp(result->pStr, TEXT_AREA_ON_PASTE_TEST_STRING) == 0) { in OnEventReceive()

Completed in 21 milliseconds

12345