/foundation/communication/netstack/frameworks/js/builtin/fetch/src/ |
H A D | response_data.cpp | 43 header = Strip(Strip(header), '\r'); in ParseHeaders() 49 statusLine = Strip(header); in ParseHeaders() 52 headers[Strip(header.substr(0, index))] = Strip(header.substr(index + 1)); in ParseHeaders()
|
H A D | http_request_utils.cpp | 41 std::string Strip(const std::string &str, char ch) in Strip() function
|
/foundation/communication/netstack/frameworks/js/napi/fetch/options/src/ |
H A D | fetch_response.cpp | 44 if (CommonUtils::Strip(header).empty()) { in ParseHeaders() 49 header_[CommonUtils::Strip(header)] = ""; in ParseHeaders() 50 NETSTACK_LOGI("HEAD: %{public}s", CommonUtils::Strip(header).c_str()); in ParseHeaders() 53 header_[CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index)))] = in ParseHeaders() 54 CommonUtils::Strip(header.substr(index + 1)); in ParseHeaders()
|
/foundation/communication/netstack/frameworks/js/napi/http/options/src/ |
H A D | http_response.cpp | 43 if (CommonUtils::Strip(header).empty()) { in ParseHeaders() 48 header_[CommonUtils::Strip(header)] = ""; in ParseHeaders() 49 NETSTACK_LOGD("HEAD: %{public}s", CommonUtils::Strip(header).c_str()); in ParseHeaders() 52 if (CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index))) == in ParseHeaders() 54 setCookie_.push_back(CommonUtils::Strip(header.substr(index + 1))); in ParseHeaders() 57 header_[CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index)))] = in ParseHeaders() 58 CommonUtils::Strip(header.substr(index + 1)); in ParseHeaders()
|
/foundation/communication/netstack/frameworks/cj/http/src/ |
H A D | net_http_response.cpp | 44 if (CommonUtils::Strip(header).empty()) { in ParseHeaders() 49 NETSTACK_LOGI("HEAD: %{public}s", CommonUtils::Strip(header).c_str()); in ParseHeaders() 52 if (CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index))) == in ParseHeaders() 54 setCookie_.push_back(CommonUtils::Strip(header.substr(index + 1))); in ParseHeaders() 57 header_[CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index)))] = in ParseHeaders() 58 CommonUtils::Strip(header.substr(index + 1)); in ParseHeaders()
|
/foundation/communication/netstack/frameworks/native/http/http_client/ |
H A D | http_client_response.cpp | 53 if (CommonUtils::Strip(header).empty()) { in ParseHeaders() 58 headers_[CommonUtils::Strip(header)] = ""; in ParseHeaders() 59 NETSTACK_LOGD("HEAD: %{public}s", CommonUtils::Strip(header).c_str()); in ParseHeaders() 62 headers_[CommonUtils::ToLower(CommonUtils::Strip(header.substr(0, index)))] = in ParseHeaders() 63 CommonUtils::Strip(header.substr(index + 1)); in ParseHeaders()
|
/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/lumeassetcompiler/ |
H A D | build.sh | 41 mkdir -p $PROJECT_DIR/Strip 54 cp -r $PROJECT_DIR/LumeAssetCompiler $PROJECT_DIR/Strip 55 #$LLVM_DIR/bin/llvm-strip -s $PROJECT_DIR/Strip/LumeAssetCompiler 57 #cp $PROJECT_DIR/Strip/LumeAssetCompiler $WORKING_DIR/../test/RofsBuild/LumeAssetCompiler
|
/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/ |
H A D | build.sh | 59 mkdir $PROJECT_DIR/Strip 61 cp -r $PROJECT_DIR/LumeShaderCompiler $PROJECT_DIR/Strip 62 #$LLVM_DIR/bin/llvm-strip -s $PROJECT_DIR/Strip/LumeShaderCompiler 64 #cp $PROJECT_DIR/Strip/LumeShaderCompiler $WORKING_DIR/../test/RofsBuild/LumeShaderCompiler
|
/foundation/communication/netstack/frameworks/js/builtin/fetch/include/ |
H A D | http_request_utils.h | 40 std::string Strip(const std::string &str, char ch = ' ');
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/ |
H A D | schema_utils.h | 43 static std::string Strip(const std::string &inString); 45 // Strip the namespace from the full-name, this method mainly for flatbuffer-type schema
|
/foundation/communication/netstack/utils/common_utils/include/ |
H A D | netstack_common_utils.h | 43 std::string Strip(const std::string &str, char ch = ' ');
|
/foundation/communication/netmanager_base/utils/common_utils/include/ |
H A D | netmanager_base_common_utils.h | 50 std::string Strip(const std::string &str, char ch = ' ');
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/ |
H A D | relational_schema_object.cpp | 531 std::string stripedVersion = SchemaUtils::Strip(version); 564 if (SchemaUtils::Strip(fieldValue.stringValue) != SchemaConstant::KEYWORD_TYPE_RELATIVE) { 575 std::string stripedMode = SchemaUtils::Strip(mode); 599 tableMode_ = SchemaUtils::Strip(fieldValue.stringValue) == SchemaConstant::KEYWORD_TABLE_SPLIT_DEVICE ?
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | flatbuffer_schema.cpp | 495 if (SchemaUtils::Strip(versionAttr->value()->str()) != SchemaConstant::SCHEMA_SUPPORT_VERSION) { in ParseCheckRootTableAttribute() 508 std::string skipsizeStr = SchemaUtils::Strip(skipsizeAttr->value()->str()); in ParseCheckRootTableAttribute() 737 eachIndexField = SchemaUtils::Strip(eachIndexField); in ParseCheckIndexes()
|
H A D | schema_utils.cpp | 150 // Have been trim, Strip leading and trailing ' in TransToString() 451 std::string SchemaUtils::Strip(const std::string &inString) in Strip() function in DistributedDB::SchemaUtils
|
H A D | schema_object.cpp | 509 if (SchemaUtils::Strip(versionValue.stringValue) != SchemaConstant::SCHEMA_SUPPORT_VERSION) { in ParseCheckSchemaVersionMode() 521 std::string modeStripped = SchemaUtils::Strip(modeValue.stringValue); in ParseCheckSchemaVersionMode()
|
/foundation/communication/netmanager_base/test/netmanagerutils/unittest/netmanager_base_common_test/ |
H A D | ut_netmanager_base_common.cpp | 131 * @tc.desc: Test UtNetmanagerBaseCommon Strip. 136 auto result = CommonUtils::Strip(TEST_TEXT, '?'); in HWTEST_F()
|
/foundation/communication/netstack/utils/common_utils/src/ |
H A D | netstack_common_utils.cpp | 99 std::string Strip(const std::string &str, char ch) in Strip() function
|
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/ |
H A D | net_manager_native.cpp | 256 tcp_rwmem[i] += Strip(vTcpBufferSizes[i * (MAX_TCP_BUFFER_SIZES_COUNT / TCP_BUFFER_SIZES_TYPE) + j]); in SetTcpBufferSizes()
|
/foundation/communication/netmanager_base/utils/common_utils/src/ |
H A D | netmanager_base_common_utils.cpp | 92 std::string Strip(const std::string &str, char ch) in Strip() function
|
/foundation/communication/netstack/test/unittest/utils/common_utils/ |
H A D | NetStackCommonUtilsTest.cpp | 58 std::string subStr = Strip(str, SPACE); in HWTEST_F()
|
/foundation/communication/netstack/test/unittest/websocket_test/ |
H A D | NetStackCommonUtilsTest.cpp | 58 std::string subStr = Strip(str, SPACE);
in HWTEST_F()
|