Searched refs:postfix (Results 1 – 9 of 9) sorted by relevance
55 std::string postfix = upgradeFile.substr(pos + 1); in IsValidUpgradeFile() local56 std::transform(postfix.begin(), postfix.end(), postfix.begin(), ::tolower); in IsValidUpgradeFile()57 if (postfix.compare("bin") == 0) { in IsValidUpgradeFile()59 } else if (postfix.compare("zip") == 0) { in IsValidUpgradeFile()61 } else if (postfix.compare("lz4") == 0) { in IsValidUpgradeFile()63 } else if (postfix.compare("gz") == 0) { in IsValidUpgradeFile()
38 bool EndsWith(string_view str, string_view postfix) in EndsWith() argument40 …return str.size() >= postfix.size() && 0 == str.compare(str.size() - postfix.size(), postfix.size(… in EndsWith()
110 char postfix[] = "p2p_postfix_name"; variable111 …EXPECT_TRUE(mInterface->wpaP2pCliCmdSetSsidPostfixName(mInterface, postfix) != P2P_SUP_ERRCODE_SUC…113 …EXPECT_TRUE(mInterface->wpaP2pCliCmdSetSsidPostfixName(mInterface, postfix) != P2P_SUP_ERRCODE_SUC…115 …EXPECT_TRUE(mInterface->wpaP2pCliCmdSetSsidPostfixName(mInterface, postfix) == P2P_SUP_ERRCODE_SUC…
1/* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * ...
670 std::string postfix = path.substr(pos + 1, -1); in DoCreatePkgStream() local671 std::transform(postfix.begin(), postfix.end(), postfix.begin(), ::tolower); in DoCreatePkgStream()
556 * Set the postfix to be used for P2P SSID's.559 * @param postfix name String to be appended to SSID.
1592 A postfix operator `!` can be used to assert that its operand is non-null.