Home
last modified time | relevance | path

Searched refs:napi_get_buffer_info (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/napi/
H A Duse-napi-about-buffer.md22 | napi_get_buffer_info | 获取ArkTS Buffer底层数据缓冲区及其长度。 |
172 ### napi_get_buffer_info subsection
195 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
217 …hilog.info(0x0000, 'testTag', 'Test Node-API napi_get_buffer_info: %{public}s', testNapi.getBuffer…
219 hilog.error(0x0000, 'testTag', 'Test Node-API napi_get_buffer_info error');
H A Dnapi-guidelines.md438 | napi_get_buffer_info |
H A Dnapi-data-types-interfaces.md277 | napi_get_buffer_info | 获取JS Buffer底层data及其长度。 |
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-about-buffer.md22 | napi_get_buffer_info | Obtains the underlying data of an ArkTS **Buffer** instance and its length…
172 ### napi_get_buffer_info subsection
174 …an operation on the data in a **Buffer** instance in ArkTS, use **napi_get_buffer_info** to obtain…
195 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
217 …hilog.info(0x0000, 'testTag', 'Test Node-API napi_get_buffer_info: %{public}s', testNapi.getBuffer…
219 hilog.error(0x0000, 'testTag', 'Test Node-API napi_get_buffer_info error');
H A Dnapi-guidelines.md438 | napi_get_buffer_info |
H A Dnapi-data-types-interfaces.md277 | napi_get_buffer_info | Obtains the underlying data of a JS **Buffer** and its length.|
/ohos5.0/foundation/arkui/napi/test/unittest/
H A Dtest_napi_ext.cpp60 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
79 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
100 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
120 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
139 napi_get_buffer_info(env, buffer, &tmpBufferPtr, &bufferLength);
H A Dtest_napi.cpp6680 napi_status status = napi_get_buffer_info(env, value, (void**)&data, &length);
6692 napi_status status = napi_get_buffer_info(env, value, (void**)&data, &length);
/ohos5.0/foundation/arkui/napi/sample/native_module_systemtest/
H A Djs_test_buffer_napi.cpp154 NAPI_CALL(env, napi_get_buffer_info(env, theBuffer, (void**)(&bufferData), &bufferLength)); in BufferInfoFun()
H A Dtest_napi.cpp4639 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4671 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4698 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4725 napi_status getinforesult = napi_get_buffer_info(env, Buffer, nullptr, &BufferLength);
4753 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, nullptr);
4811 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4842 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4871 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4900 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
4928 napi_status getinforesult = napi_get_buffer_info(env, Buffer, &tmpBufferPtr, &BufferLength);
[all …]
/ohos5.0/docs/zh-cn/application-dev/reference/native-lib/
H A Dnapi.md161 |FUNC|napi_get_buffer_info|获取js `Buffer`底层data及其长度。|10|
620 ### napi_get_buffer_info subsection
/ohos5.0/docs/en/application-dev/reference/native-lib/
H A Dnapi.md161 |FUNC|napi_get_buffer_info|Obtains the underlying data of **Buffer** and its length.|10|
618 ### napi_get_buffer_info subsection
/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_api.cpp2643 NAPI_EXTERN napi_status napi_get_buffer_info(napi_env env, napi_value value, void** data, size_t* l… in napi_get_buffer_info() function