Home
last modified time | relevance | path

Searched refs:napi_create_sendable_typedarray (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/napi/test/unittest/
H A Dtest_sendable_napi.cpp1071 res = napi_create_sendable_typedarray(env, napi_uint8_array, LENGTH / 2, nullptr, 1, &result);
1074 res = napi_create_sendable_typedarray(env, napi_int8_array, LENGTH / 2, nullptr, 1, &result);
1077 res = napi_create_sendable_typedarray(env, napi_int8_array, LENGTH / 2, nullptr, 1, &result);
1080 res = napi_create_sendable_typedarray(env, napi_uint16_array, LENGTH / 2, nullptr, 1, &result);
1083 res = napi_create_sendable_typedarray(env, napi_uint16_array, LENGTH / 2, nullptr, 1, &result);
1086 res = napi_create_sendable_typedarray(env, napi_int32_array, LENGTH / 2, nullptr, 1, &result);
1089 res = napi_create_sendable_typedarray(env, napi_int32_array, LENGTH / 2, nullptr, 1, &result);
1092 res = napi_create_sendable_typedarray(env, napi_uint32_array, LENGTH / 2, nullptr, 1, &result);
1095 res = napi_create_sendable_typedarray(env, napi_uint32_array, LENGTH / 2, nullptr, 1, &result);
1098 res = napi_create_sendable_typedarray(env, napi_float32_array, LENGTH / 2, nullptr, 1, &result);
[all …]
H A Dtest_napi.cpp6899 …status = napi_create_sendable_typedarray(env, napi_int32_array, typedArrayLength, arraybuffer, 0, …
6910 napi_status status = napi_create_sendable_typedarray(env, napi_int32_array, typedArrayLength,
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/common/src/
H A Djs_sendable_utils.cpp46 …status = napi_create_sendable_typedarray(env, napi_uint8_array, value.size(), buffer, 0, &jsValue); in Convert2Sendable()
92 …status = napi_create_sendable_typedarray(env, napi_float32_array, value.size(), buffer, 0, &jsValu… in Convert2Sendable()
194 status = napi_create_sendable_typedarray(env, type, size, buffer, 0, &sendableTypedArryay); in ToSendableTypedArray()
/ohos5.0/docs/zh-cn/application-dev/napi/
H A Dnapi-data-types-interfaces.md518 | napi_create_sendable_typedarray | 创建一个sendable TypedArray。|
671 #### napi_create_sendable_typedarray subsubsection
674 napi_status napi_create_sendable_typedarray(napi_env env,
H A Duse-napi-about-extension.md754 | napi_create_sendable_typedarray | 创建一个sendable TypedArray。|
1039 #### napi_create_sendable_typedarray subsubsection
1057 napi_create_sendable_typedarray(env, napi_uint8_array, LENGTH, arraybuffer, OFFSET, &result);
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/js/napi/common/src/
H A Djs_sendable_utils.cpp120 ret = napi_create_sendable_typedarray(env, napi_uint8_array, size, buffer, 0, &sendableValue); in ConvertToSendable()
/ohos5.0/docs/zh-cn/application-dev/reference/native-lib/
H A Dnapi.md709 |FUNC|napi_create_sendable_typedarray | 创建一个Sendable TypedArray。|12|
1268 ### napi_create_sendable_typedarray subsection
1271 napi_status napi_create_sendable_typedarray(napi_env env,
/ohos5.0/foundation/arkui/napi/interfaces/kits/napi/
H A Dnative_api.h160 NAPI_EXTERN napi_status napi_create_sendable_typedarray(napi_env env,
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-about-extension.md742 | napi_create_sendable_typedarray | Creates a sendable **TypedArray**.|
1001 #### napi_create_sendable_typedarray subsubsection
1003 Use **napi_create_sendable_typedarray** to create a sendable **TypedArray**.
1019 napi_create_sendable_typedarray(env, napi_uint8_array, LENGTH, arraybuffer, OFFSET, &result);
H A Dnapi-data-types-interfaces.md507 | napi_create_sendable_typedarray | Creates a sendable TypedArray.|
660 #### napi_create_sendable_typedarray subsubsection
663 napi_status napi_create_sendable_typedarray(napi_env env,
/ohos5.0/docs/en/application-dev/reference/native-lib/
H A Dnapi.md707 |FUNC|napi_create_sendable_typedarray | Creates a sendable **TypedArray**.|12|
1266 ### napi_create_sendable_typedarray subsection
1269 napi_status napi_create_sendable_typedarray(napi_env env,
/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_api.cpp2717 NAPI_EXTERN napi_status napi_create_sendable_typedarray(napi_env env, in napi_create_sendable_typedarray() function