/base/startup/init/test/unittest/tools/ |
D | prepare_testdata.sh | 96 rm -rf ./g.sh 117 touch ${ohos_init}/g.sh 118 …cho "${ohos_root}/prebuilts/clang/ohos/linux-x86_64/llvm/bin/llvm-cov gcov \$@" > ${ohos_init}/g.sh 119 chmod 755 ${ohos_init}/g.sh 123 lcov -d . -o "${ohos_init}/init_ut_tmp.info" -b . -c --gcov-tool ${ohos_init}/g.sh 143 rm -rf ./g.sh *.gcno *.gcda init_ut.info init_ut_tmp.info
|
/base/startup/appspawn/test/unittest/ |
D | gencoverage.sh | 107 rm -rf ./g.sh 128 touch ${ohos_init}/g.sh 129 …cho "${ohos_root}/prebuilts/clang/ohos/linux-x86_64/llvm/bin/llvm-cov gcov \$@" > ${ohos_init}/g.sh 130 chmod 755 ${ohos_init}/g.sh 134 lcov -d . -o "${ohos_init}/appspawn_ut_tmp.info" -b . -c --gcov-tool ${ohos_init}/g.sh 153 rm -rf ./g.sh *.gcno *.gcda appspawn_ut.info appspawn_ut_tmp.info
|
/base/startup/hvb/tools/ |
D | readme.md | 31 …e.g. ./hvbtool.py make_hash_footer --image boot.img --partition boot --partition_size 31457280 … 57 …e.g. ./hvbtool.py make_hashtree_footer --image system.img --partition system --partition_size 3… 89 …e.g. ./hvbtool.py make_rvt_image --salt 9f3a79b7f2bad5adb086bcb8cf37f991733f2696 --pubkey test_… 97 e.g. ./hvbtool.py parse_image --image odm.img 105 e.g. ./hvbtool.py erase_image --image odm.img
|
/base/startup/init/test/fuzztest/ |
D | BUILD.gn | 46 "-g", 71 "-g", 97 "-g", 124 "-g", 150 "-g", 173 "-g", 196 "-g", 224 "-g", 251 "-g", 278 "-g", [all …]
|
/base/sensors/miscdevice/interfaces/native/light/include/ |
D | light_agent_type.h | 84 uint8_t g; /** Green value range 0-255. */ member 99 uint8_t g; /** Green value range 0-255. */ member
|
/base/security/huks/test/unittest/huks_standard_test/interface_inner_test/alg_module_test/src/ |
D | openssl_dsa_helper.c | 86 BIGNUM *g = NULL; in InitDsa() local 102 g = BinToBN(key->data + offset, keyMaterial->gSize); in InitDsa() 117 if (DSA_set0_pqg(dsa, p, q, g) != 1) { in InitDsa() 129 FreeBN(g); in InitDsa() 366 const BIGNUM *g = DSA_get0_g(dsa); in SaveDsaKeyToHksBlob() local 368 if (x == NULL || y == NULL || p == NULL || q == NULL || g == NULL) { in SaveDsaKeyToHksBlob() 389 if (BN_bn2bin(g, key->data + offset + (keyMaterial->gSize - (uint32_t)BN_num_bytes(g))) <= 0) { in SaveDsaKeyToHksBlob()
|
/base/security/huks/utils/crypto_adapter/ |
D | hks_client_service_adapter.c | 195 …uct HksBlob *publicKey, struct HksBlob *y, struct HksBlob *p, struct HksBlob *q, struct HksBlob *g) in GetDsaPubKeyParam() argument 219 g->size = keyMaterial->gSize; in GetDsaPubKeyParam() 220 g->data = publicKey->data + offset; in GetDsaPubKeyParam() 225 const struct HksBlob *g, struct HksBlob *x509Key) in DsaToX509PublicKey() argument 232 BIGNUM *dsaG = BN_bin2bn(g->data, g->size, NULL); in DsaToX509PublicKey() 281 struct HksBlob g = {0}; in DsaPublicKeyToX509() local 282 int32_t ret = GetDsaPubKeyParam(publicKey, &y, &p, &q, &g); in DsaPublicKeyToX509() 285 return DsaToX509PublicKey(&y, &p, &q, &g, x509Key); in DsaPublicKeyToX509() 557 const BIGNUM *g = NULL; in X509PublicKeyToDsa() local 566 GetDsaKeyInfo(dsa, &g, &gSize, DSA_get0_g) != HKS_SUCCESS) { in X509PublicKeyToDsa() [all …]
|
/base/update/updater/services/ui/view/ |
D | view_api.cpp | 80 auto g = getNextField(); in StrToColor() local 83 return OHOS::Color::GetColorFromRGBA(r, g, b, a); in StrToColor()
|
/base/update/updater/test/unittest/utils/json/ |
D | utils_json_visitor_test.cpp | 30 (std::string, g), 161 "g":"foo", 171 EXPECT_EQ(e.d2.g, "foo"); 176 PairType { R"("g":"foo")", R"("g":1)" }, PairType { R"("b":true)", R"("b":"true")" }, 179 "g":"foo",
|
/base/update/updater/resources/font/ |
D | README.md | 2 …敖怦盹六详枪秘魁樵缆蜈傧听图沙遥腰坊阀讪钣鲥旸收督穹漠盐弥褚滂迸斡舍梅啪翅屎跷砗酉釜痍半顾阅余郝搁嫣刍踯忸读敌锋胶佩隙蒲谙簑轾aabbccddeeffgghhiijjkkllmmnnooppqqr…
|
/base/sensors/sensor/interfaces/native/src/ |
D | geomagnetic_field.cpp | 152 float g = GAUSS_COEFFICIENT_G[row][column] + yearsSinceBase in CalculateGeomagneticComponent() local 157 * (g * cosMLongitude[column] + h * sinMLongitude[column]) in CalculateGeomagneticComponent() 161 * (g * sinMLongitude[column] - h * cosMLongitude[column]) in CalculateGeomagneticComponent() 166 * (g * cosMLongitude[column] + h * sinMLongitude[column]) in CalculateGeomagneticComponent()
|
/base/security/huks/frameworks/huks_standard/main/crypto_engine/openssl/src/ |
D | hks_openssl_dsa.c | 117 BIGNUM *g = BN_bin2bn(buff, keyMaterial->gSize, NULL); in InitDsaStructParameter() local 119 if (DSA_set0_pqg(dsa, p, q, g) != HKS_OPENSSL_SUCCESS) { in InitDsaStructParameter() 122 SELF_FREE_PTR(g, BN_free); in InitDsaStructParameter() 208 const BIGNUM *g = DSA_get0_g(dsa); in DsaKeyMaterialData() local 235 ret = BN_bn2bin(g, rawMaterial + offset + (keyMaterial->gSize - (uint32_t)BN_num_bytes(g))); in DsaKeyMaterialData()
|
/base/notification/distributed_notification_service/test/fuzztest/fuzz_common_base/ |
D | BUILD.gn | 17 "-g",
|
/base/sensors/miscdevice/interfaces/native/light/test/unittest/ |
D | light_agent_test.cpp | 88 .g = 0Xff, in GetLightColor() 97 .g = 0Xff, in GetLightColor()
|
/base/hiviewdfx/hisysevent/test/fuzztest/common/hisyseventmanager_fuzzer/ |
D | BUILD.gn | 24 "-g",
|
/base/hiviewdfx/hiview/plugins/faultlogger/test/common/hiviewdfxfaultlogger_fuzzer/ |
D | BUILD.gn | 25 "-g",
|
/base/hiviewdfx/hidumper/test/fuzztest/sadump_fuzzer/ |
D | BUILD.gn | 25 "-g",
|
/base/hiviewdfx/hiview/plugins/eventservice/test/fuzztest/common/eventsource_fuzzer/ |
D | BUILD.gn | 26 "-g",
|
/base/powermgr/battery_manager/test/fuzztest/battery_fuzzer/ |
D | BUILD.gn | 27 "-g",
|
/base/security/access_token/test/fuzztest/access_token/gettokentypeflag_fuzzer/ |
D | BUILD.gn | 24 "-g",
|
/base/notification/eventhandler/test/fuzztest/filedescriptorlistener_fuzzer/ |
D | BUILD.gn | 27 "-g",
|
/base/powermgr/power_manager/test/fuzztest/power_fuzzer/ |
D | BUILD.gn | 29 "-g",
|
/base/notification/eventhandler/test/fuzztest/eventqueue_fuzzer/ |
D | BUILD.gn | 28 "-g",
|
/base/notification/common_event_service/test/fuzztest/unsubscribecommonevent_fuzzer/ |
D | BUILD.gn | 27 "-g",
|
/base/notification/eventhandler/test/fuzztest/innerevent_fuzzer/ |
D | BUILD.gn | 28 "-g",
|