/foundation/bundlemanager/bundle_framework/interfaces/kits/js/app_control/ |
H A D | native_module.cpp | 26 static napi_value AppControlExport(napi_env env, napi_value exports) in AppControlExport() argument 54 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in AppControlExport() 56 return exports; in AppControlExport()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/installer/ |
H A D | native_module.cpp | 26 static napi_value BundleInstallerExport(napi_env env, napi_value exports) in BundleInstallerExport() argument 36 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in BundleInstallerExport() 62 return exports; in BundleInstallerExport()
|
/foundation/arkui/napi/sample/native_module_calc/ |
H A D | napi_number.cpp | 40 static napi_value Export(napi_env env, napi_value exports) in Export() argument 63 napi_set_named_property(env, exports, "Number", result); in Export() 64 return exports; in Export()
|
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_pbap_pse.h | 27 static void DefinePbapServerJSClass(napi_env env, napi_value exports);
29 static napi_value DefineCreateProfile(napi_env env, napi_value exports);
31 static napi_value PbapPropertyValueInit(napi_env env, napi_value exports);
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_app_service/app_service_version2_library1/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports) in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 50 return exports; in Init()
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_share_library/libA_v10002/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 50 return exports;
in Init()
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_app_service/app_service_version1_library1/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports) in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 50 return exports; in Init()
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_app_service/app_service_version2_library2/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports) in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 50 return exports; in Init()
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_share_library/libA_v10001/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 50 return exports;
in Init()
|
/foundation/bundlemanager/bundle_framework/test/sceneProject/unittest/bundle_app_service/app_service_version1_library2/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports) in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 50 return exports; in Init()
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/ |
H A D | webgl_renderbuffer.h | 30 bool Export(napi_env env, napi_value exports) override; 52 WebGLRenderbuffer(napi_env env, napi_value exports) : NExporter(env, exports), renderbuffer_(0) {}; in WebGLRenderbuffer() argument
|
H A D | webgl_shader.h | 30 bool Export(napi_env env, napi_value exports) override; 60 WebGLShader(napi_env env, napi_value exports) : NExporter(env, exports), shaderId_(0), type_(0) {}; in WebGLShader() argument
|
H A D | webgl_buffer.h | 31 bool Export(napi_env env, napi_value exports) override; 35 WebGLBuffer(napi_env env, napi_value exports) : NExporter(env, exports), bufferId_(0), target_(0) {}; in WebGLBuffer() argument
|
H A D | webgl_shader_precision_format.h | 29 bool Export(napi_env env, napi_value exports) override; 74 WebGLShaderPrecisionFormat(napi_env env, napi_value exports) : NExporter(env, exports), in WebGLShaderPrecisionFormat() argument
|
H A D | webgl_uniform_location.h | 30 bool Export(napi_env env, napi_value exports) override; 49 WebGLUniformLocation(napi_env env, napi_value exports) : NExporter(env, exports), location_(0) {}; in WebGLUniformLocation() argument
|
/foundation/communication/netstack/frameworks/js/napi/websocket/websocket_module/include/ |
H A D | websocket_module.h | 46 static napi_value InitWebSocketModule(napi_env env, napi_value exports); 51 static void DefineWebSocketClass(napi_env env, napi_value exports); 55 static void InitWebSocketProperties(napi_env env, napi_value exports);
|
/foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/src/adaptor/ |
H A D | js_module_init.cpp | 29 static napi_value DistributedDataObjectExport(napi_env env, napi_value exports)
in DistributedDataObjectExport() argument 42 status = napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in DistributedDataObjectExport() 44 return exports;
in DistributedDataObjectExport()
|
/foundation/filemanagement/user_file_service/interfaces/kits/picker/ |
H A D | native_module_ohos_picker.cpp | 31 static napi_value Export(napi_env env, napi_value exports) in Export() argument 34 products.emplace_back(make_unique<PickerNExporter>(env, exports)); in Export() 45 return exports; in Export()
|
/test/xts/acts/ability/crossplatform/ability_runtime/actscontexttest/src/main/cpp/ |
H A D | hello.cpp | 45 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 50 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 51 return exports;
in Init()
|
/test/xts/acts/arkcompiler/esmodule/esmodule_ohostest/entry/src/ohosTest/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 50 return exports;
in Init()
|
/test/xts/acts/arkcompiler/esmodule/esmodule_ohostestlib/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 50 return exports;
in Init()
|
/test/xts/acts/arkcompiler/arkts_module_test/basic_scenario/entry/src/main/cpp/ |
H A D | napi_init.cpp | 45 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 50 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 51 return exports;
in Init()
|
/test/xts/acts/arkcompiler/arkts_module_test/basic_scenario/library/src/main/cpp/ |
H A D | napi_init.cpp | 45 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 50 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 51 return exports;
in Init()
|
/test/xts/acts/appbuild/cmake_test/ohos_app_demo_test/entry/src/main/cpp/ |
H A D | hello.cpp | 44 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 49 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 50 return exports;
in Init()
|
/test/xts/acts/arkcompiler/esmodule/esmodule_dynamicimport/entry/src/main/cpp/ |
H A D | hello.cpp | 45 static napi_value Init(napi_env env, napi_value exports) in Init() argument 50 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 51 return exports; in Init()
|