Searched refs:valuetype0 (Results 1 - 2 of 2) sorted by relevance
/commonlibrary/ets_utils/js_util_module/util/ |
H A D | native_module_util.cpp | 662 napi_valuetype valuetype0;
in EncodeIntoTwo() local 663 NAPI_CALL(env, napi_typeof(env, args[0], &valuetype0));
in EncodeIntoTwo() 672 NAPI_ASSERT(env, valuetype0 == napi_string, "Wrong argument type. String expected.");
in EncodeIntoTwo() 689 napi_valuetype valuetype0;
in EncodeIntoUint8Array() local 690 NAPI_CALL(env, napi_typeof(env, args[0], &valuetype0));
in EncodeIntoUint8Array() 697 if (valuetype0 != napi_string) {
in EncodeIntoUint8Array() 801 napi_typedarray_type valuetype0;
in EncodeBase64() local 806 NAPI_CALL(env, napi_get_typedarray_info(env, args[0], &valuetype0, &length, &data, &arraybuffer, &byteOffset));
in EncodeBase64() 807 NAPI_ASSERT(env, valuetype0 == napi_uint8_array, "Wrong argument type. napi_uint8_array expected.");
in EncodeBase64() 822 napi_typedarray_type valuetype0;
in EncodeToString() local 843 napi_typedarray_type valuetype0; DecodeBase64() local 872 napi_typedarray_type valuetype0; EncodeAsync() local 893 napi_typedarray_type valuetype0; EncodeToStringAsync() local 913 napi_typedarray_type valuetype0; DecodeAsync() local [all...] |
/commonlibrary/ets_utils/js_sys_module/process/ |
H A D | native_module_process.cpp | 367 napi_valuetype valuetype0;
in On() local 368 NAPI_CALL(env, napi_typeof(env, args[0], &valuetype0));
in On() 369 if (valuetype0 != napi_valuetype::napi_string) {
in On() 541 napi_valuetype valuetype0;
in KillSigOfProcess() local 542 NAPI_CALL(env, napi_typeof(env, argv[0], &valuetype0));
in KillSigOfProcess() 545 if (valuetype0 != napi_number || valuetype1 != napi_number) {
in KillSigOfProcess()
|
Completed in 5 milliseconds