Searched refs:extraLen (Results 1 - 4 of 4) sorted by relevance
/foundation/communication/nfc/interfaces/inner_api/common/ |
H A D | ce_payment_services_parcelable.cpp | 45 uint32_t extraLen = 0; in Unmarshalling() local 46 parcel.ReadUint32(extraLen); in Unmarshalling() 47 if (extraLen >= MAX_APP_LIST_NUM) { in Unmarshalling() 52 for (uint32_t i = 0; i < extraLen; i++) { in Unmarshalling()
|
H A D | taginfo_parcelable.cpp | 65 int32_t extraLen = 0;
in Unmarshalling() local 66 parcel.ReadInt32(extraLen);
in Unmarshalling() 67 if (extraLen >= MAX_TECH_LIST_NUM) {
in Unmarshalling() 71 for (int i = 0; i < extraLen; i++) {
in Unmarshalling()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/common/ |
H A D | common_func.cpp | 374 size_t extraLen = 0; in UnwrapGZHeadValue() local 375 tie(succ, extra, extraLen) = gzHeaderNVal.GetProp("extra").ToArrayBuffer(); in UnwrapGZHeadValue() 425 if (gzHeaderNVal.HasProp("extraLen") && !gzHeaderNVal.GetProp("extraLen").TypeIs(napi_undefined) && in GetGZHeaderArg() 426 !gzHeaderNVal.GetProp("extraLen").TypeIs(napi_null)) { in GetGZHeaderArg() 427 uint32_t extraLen = 0U; in GetGZHeaderArg() local 428 tie(succ, extraLen) = gzHeaderNVal.GetProp("extraLen").ToInt32(); in GetGZHeaderArg() 433 gzHeader.extra_len = extraLen; in GetGZHeaderArg()
|
/foundation/distributedhardware/device_manager/interfaces/kits/js/src/ |
H A D | native_devicemanager_js.cpp | 2703 size_t extraLen = 0;
in JsOnFrench() local 2704 napi_get_value_string_utf8(env, argv[1], nullptr, 0, &extraLen);
in JsOnFrench() 2705 if (!CheckArgsVal(env, extraLen < DM_NAPI_BUF_LENGTH, "extra", "extraLen >= MAXLEN")) {
in JsOnFrench() 2709 napi_get_value_string_utf8(env, argv[1], extra, extraLen + 1, &extraLen);
in JsOnFrench()
|
Completed in 9 milliseconds