Home
last modified time | relevance | path

Searched full:param (Results 4651 - 4675 of 22474) sorted by relevance

1...<<181182183184185186187188189190>>...899

/drivers/interface/camera/v1_3/
H A DICameraHost.idl39 * @param cameraId Indicates the ID of the camera device, which can be obtained by calling {@link GetCameraIds}.
40 * @param callback Indicates the callback related to the camera. For details, see {@link ICameraDeviceCallback}.
41 * @param device Indicates the <b>ICameraDevice</b> instance corresponding to the ID of the camera device.
57 * @param cameraId Indicates the ID of the camera device, which can be obtained by calling {@link GetCameraIds}.
58 * @param callback Indicates the callback related to the camera. For details, see {@link ICameraDeviceCallback}.
59 * @param device Indicates the <b>ICameraDevice</b> instance corresponding to the ID of the camera device.
72 * @param resourceCost Indicates open the resource cost of the camera device
73 * @param cameraId Indicates the ID of the camera device, which can be obtained by calling {@link GetCameraIds}.
/drivers/interface/ril/v1_3/
H A DIRilCallback.idl62 * @param responseInfo Common response information, such as the card slot ID and request sequence ID.
64 * @param imeiSv IMEISV of the device.
74 * @param responseInfo Common response information, such as the card slot ID and request sequence ID.
76 * @param SimCardStatusInfo SIM card status. For details, see {@link SimCardStatusInfo}.
86 * @param responseInfo Common response information, such as the card slot ID and request sequence ID. For details,
88 * @param state NV refresh result.
98 * @param responseInfo Common response information, such as the card slot ID and request sequence ID. For details,
100 * @param state restart rild Nv match state.
/drivers/peripheral/audio/interfaces/effect/v1_0/
H A Deffect_factory.h53 * @param self Indicates the pointer to the effect interfaces to operate.
54 * @param EffectInfo Indicates the information of the effect control.
55 * @param handle Indicates the double pointer to the <b>EffectControl</b> object.
68 * @param self Indicates the pointer to the effect interfaces to operate.
69 * @param handle Indicates the pointer to the <b>EffectControl</b> object.
81 * @param self Indicates the pointer to the effect interfaces to operate.
82 * @param effectId Indicates the effectId of the effect.
83 * @param desc Indicates the descriptor of the effect controller.
/drivers/peripheral/bluetooth/audio/interfaces/include/
H A Daudio_manager.h54 * @param manager Indicates the pointer to the audio adapter manager to operate.
55 * @param descs Indicates the double pointer to the audio adapter list.
56 * @param size Indicates the pointer to the length of the list.
67 * @param manager Indicates the pointer to the audio adapter manager to operate.
68 * @param desc Indicates the pointer to the descriptor of the audio adapter.
69 * @param adapter Indicates the double pointer to the audio adapter.
80 * @param manager Indicates the pointer to the audio adapter manager to operate.
81 * @param adapter Indicates the pointer to the audio adapter whose driver will be unloaded.
/drivers/interface/location/geofence/v1_0/
H A DIGeofenceCallback.idl52 * @param isAvailable Indicates whether the geofence service is available.
63 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
64 * @param location Indicates current Location. For details, see {@link Location}.
65 * @param event Indicates name of the currently report event. For details, see {@link GeofenceEvent}.
66 * @param timestamp Indicates timestamp when the geofence event is reported. Milliseconds since January 1, 1970.
80 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
81 * @param type Indicates geofence operation type. For details, see {@link GeofenceOperateType}.
82 * @param result Indicates geofence operation result. For details, see {@link GeofenceOperateResult}.
/drivers/interface/location/geofence/v2_0/
H A DIGeofenceCallback.idl52 * @param isAvailable Indicates whether the geofence service is available.
63 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
64 * @param location Indicates current Location. For details, see {@link Location}.
65 * @param event Indicates name of the currently report event. For details, see {@link GeofenceEvent}.
66 * @param timestamp Indicates timestamp when the geofence event is reported. Milliseconds since January 1, 1970.
80 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
81 * @param type Indicates geofence operation type. For details, see {@link GeofenceOperateType}.
82 * @param result Indicates geofence operation result. For details, see {@link GeofenceOperateResult}.
/drivers/interface/ril/v1_2/
H A DIRil.idl63 * @param rilCallback Callback to set. For details, see {@link IRilCallback}.
76 * @param slotId Card slot ID.
77 * @param serialId Serial ID of a request.
78 * @param ncfgOperatorInfo Operator info. For details, see {@link Types}.
92 * @param slotId Card slot ID.
93 * @param serialId Serial ID of a request.
106 * @param slotId Card slot ID.
107 * @param serialId Serial ID of a request.
/drivers/peripheral/huks/test/unittest/
H A Dhdi_ihuks_api_compat_test.cpp99 struct HksParam param = {0}; in HWTEST_F() local
100 ASSERT_EQ(param.tag, 0); in HWTEST_F()
101 ASSERT_EQ(param.boolParam, false); in HWTEST_F()
102 ASSERT_EQ(param.int32Param, 0); in HWTEST_F()
103 ASSERT_EQ(param.uint32Param, 0); in HWTEST_F()
104 ASSERT_EQ(param.uint64Param, 0); in HWTEST_F()
105 ASSERT_EQ(param.blob.data, nullptr); in HWTEST_F()
106 ASSERT_EQ(param.blob.size, 0); in HWTEST_F()
/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/foo/ril/v1_2/
H A DIRil.idl63 * @param rilCallback Callback to set. For details, see {@link IRilCallback}.
76 * @param slotId Card slot ID.
77 * @param serialId Serial ID of a request.
78 * @param ncfgOperatorInfo Operator info. For details, see {@link Types}.
92 * @param slotId Card slot ID.
93 * @param serialId Serial ID of a request.
106 * @param slotId Card slot ID.
107 * @param serialId Serial ID of a request.
/foundation/ability/idl_tool/idl_tool_2/codegen/SA/ts/
H A Dsa_ts_interface_code_emitter.cpp87 AutoPtr<ASTParameter> param = method->GetParameter(i); in EmitInterfaceMethod() local
88 if (param->GetAttribute() & ASTParamAttr::PARAM_IN) { in EmitInterfaceMethod()
89 AutoPtr<SaTypeEmitter> typeEmitter = GetTypeEmitter(param->GetType()); in EmitInterfaceMethod()
90 sb.AppendFormat("%s: %s, ", param->GetName().c_str(), typeEmitter->EmitTsType().c_str()); in EmitInterfaceMethod()
107 AutoPtr<ASTParameter> param = method->GetParameter(i); in EmitInterfaceMethodCallback() local
108 if (param->GetAttribute() & ASTParamAttr::PARAM_OUT) { in EmitInterfaceMethodCallback()
109 AutoPtr<SaTypeEmitter> typeEmitter = GetTypeEmitter(param->GetType()); in EmitInterfaceMethodCallback()
110 sb.AppendFormat(", %s: %s", param->GetName().c_str(), typeEmitter->EmitTsType().c_str()); in EmitInterfaceMethodCallback()
/foundation/ability/idl_tool/test/hdi_unittest/location_geofence_v1_0/foo/location/geofence/v1_0/
H A DIGeofenceCallback.idl52 * @param isAvailable Indicates whether the geofence service is available.
63 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
64 * @param location Indicates current Location. For details, see {@link Location}.
65 * @param event Indicates name of the currently report event. For details, see {@link GeofenceEvent}.
66 * @param timestamp Indicates timestamp when the geofence event is reported.
80 * @param fenceIndex Indicates geofence ID, this geofence ID is unique.
81 * @param type Indicates geofence operation type. For details, see {@link GeofenceOperateType}.
82 * @param result Indicates geofence operation result. For details, see {@link GeofenceOperateResult}.
/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/
H A Dnapi_common_want.h32 bool UnwrapElementName(napi_env env, napi_value param, ElementName &elementName);
35 bool UnwrapWantParams(napi_env env, napi_value param, AAFwk::WantParams &wantParams);
39 bool UnwrapWant(napi_env env, napi_value param, AAFwk::Want &want);
42 bool UnWrapAbilityResult(napi_env env, napi_value param, int &resultCode, AAFwk::Want &want);
44 void HandleNapiObject(napi_env env, napi_value param, napi_value jsProValue, std::string &strProName,
47 bool IsSpecialObject(napi_env env, napi_value param, std::string &strProName, std::string type,
50 bool HandleFdObject(napi_env env, napi_value param, std::string &strProName, AAFwk::WantParams &wantParams);
52 bool HandleRemoteObject(napi_env env, napi_value param, std::string &strProName, AAFwk::WantParams &wantParams);
/foundation/ability/ability_runtime/frameworks/js/napi/ability_auto_startup_callback/
H A Djs_ability_auto_startup_manager_utils.cpp24 bool UnwrapAutoStartupInfo(napi_env env, napi_value param, AutoStartupInfo &info) in UnwrapAutoStartupInfo() argument
26 if (!IsNormalObject(env, param)) { in UnwrapAutoStartupInfo()
27 TAG_LOGE(AAFwkTag::AUTO_STARTUP, "invalid param"); in UnwrapAutoStartupInfo()
31 if (!AppExecFwk::UnwrapStringByPropertyName(env, param, "bundleName", info.bundleName)) { in UnwrapAutoStartupInfo()
36 if (!AppExecFwk::UnwrapStringByPropertyName(env, param, "abilityName", info.abilityName)) { in UnwrapAutoStartupInfo()
41 if (AppExecFwk::IsExistsByPropertyName(env, param, "appCloneIndex")) { in UnwrapAutoStartupInfo()
42 if (!AppExecFwk::UnwrapInt32ByPropertyName(env, param, "appCloneIndex", info.appCloneIndex)) { in UnwrapAutoStartupInfo()
48 AppExecFwk::UnwrapStringByPropertyName(env, param, "moduleName", info.moduleName); in UnwrapAutoStartupInfo()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/
H A Dpage_ability_impl.h44 * @param want Indicates the structure containing information about the ability.
45 * @param targetState The life cycle state to switch to.
46 * @param sessionInfo Indicates the sessionInfo.
55 * @param want Indicates the structure containing information about the ability.
56 * @param targetState The life cycle state to switch to.
67 * @param keyEvent Indicates the key-down event.
77 * @param keyEvent Indicates the key-up event.
88 * @param touchEvent Indicates information about the touch event.
/foundation/arkui/ace_engine/advanced_ui_component/formmenu/interfaces/
H A Dformmenu.js41 want.parameters['ohos.extra.param.key.add_form_to_host_width'] = compInfo.size.width.toFixed(2);
42 want.parameters['ohos.extra.param.key.add_form_to_host_height'] = compInfo.size.height.toFixed(2);
43 want.parameters['ohos.extra.param.key.add_form_to_host_screenx'] = compInfo.screenOffset.x.toFixed(2);
44 want.parameters['ohos.extra.param.key.add_form_to_host_screeny'] = compInfo.screenOffset.y.toFixed(2);
45 want.parameters['ohos.extra.param.key.add_form_to_host_snapshot'] = pixelStr;
54 * @param { Want } want - The want of the form to publish.
55 * @param { string } componentId - The id of the component used to get form snapshot.
56 * @param { AddFormOptions } [options] - Add form options.
/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/async/
H A Djs_async_work.h73 * @param [in] handler: QueueHandler object to set
80 * @param [in] workHandler: the entry handler of the async work
81 * @param [in] data: pointer to the data the async work needed
91 * @param[in] handler: the entry handler of the async work
92 * @param[in] data: pointer to the data the async work needed
101 * @param [in] msgId: the new message ID
102 * @param [in] data: pointer to the data
111 * @param [in] asyncWork: reference to the async work to be executed
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_gatt_descriptor.h69 * @param uuid Uuid of Gatt Descriptor.
70 * @param permissions permissions of Gatt Descriptor.
79 * @param uuid Uuid of Gatt Descriptor.
80 * @param handle handle of Gatt Descriptor.
81 * @param permissions permissions of Gatt Descriptor.
129 * @param size size of get value.
139 * @param values values of set value.
140 * @param length length of set value.
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_service_connection.h31 * @param role The a2dp profile role of local device.
53 * @param device The address of the peer bluetooth device.
63 * @param device The address of the peer bluetooth device.
73 * @param device The address of the peer bluetooth device.
74 * @param state The connection state of the peer bluetooth device.
83 * @param device The address of the peer bluetooth device.
112 * @param device The address of the peer bluetooth device.
113 * @param role The local device's profile role.
/foundation/bundlemanager/bundle_framework_lite/interfaces/kits/bundle_lite/
H A Delement_name.h81 * @param element Indicates the pointer to the <b>ElementName</b> to clear.
89 * @param element Indicates the pointer to the <b>ElementName</b> to clear.
96 * @param element Indicates the pointer to the <b>ElementName</b> to set.
97 * @param deviceId Indicates the pointer to the device ID to set.
106 * @param element Indicates the pointer to the <b>ElementName</b> to set.
107 * @param bundleName Indicates the pointer to the bundle name to set.
116 * @param element Indicates the pointer to the <b>ElementName</b> to set.
117 * @param abilityName Indicates the pointer to the class name to set.
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/
H A Drender_handle_component.h50 * @param entity Entity.
55 * @param index Index of the component.
61 * @param entity Entity.
66 * @param index Index of the component.
71 * @param handle Render handle to search for.
79 * @param entityMgr Entity manager.
80 * @param rhcMgr Render handle component manager.
81 * @param handle Render handle reference for the render resource.
/foundation/graphic/graphic_3d/lume/LumeRender/api/render/datastore/
H A Dintf_render_data_store_default_acceleration_structure_staging.h112 * @param buildInfo Build info for acceleration structure.
113 * @param geoms Geometry data for building.
119 * @param buildInfo Build info for acceleration structure.
120 * @param geoms Geometry data for building.
126 * @param buildInfo Build info for acceleration structure.
127 * @param geoms Geometry data for building.
133 * @param bufferOffset Instance buffer with offset. (MemoryPropertyFlags: CORE_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
135 * @param data Array view of data to be copied.
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/systems/
H A Dintf_skinning_system.h36 * @param skinIbmEntity Entity where we get skin ibm matrices.
37 * @param joints List of entities which are the joints of the skin. The order should match the order of the skin
39 * @param entity Entity where we get node which we use in instance creation.
40 * @param skeleton Entity pointing to the node that is the common root of the joint entity hierarchy (optional).
47 * @param skinIbmEntity Entity where we get skin ibm matrices and joint entities.
48 * @param entity Entity where we get node which we use in instance creation.
49 * @param skeleton Entity pointing to the node that is the common root of the joint entity hierarchy (optional).
55 * @param entity Entity whose skin instance is destroyed.
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davsource.h33 * @param format The Format handle pointer to get format info.
41 * @param format The Format handle pointer to get format info.
42 * @param trackIndex The track index to get format.
50 * @param format The Format handle pointer to get format info.
84 * @param uri The file's uri.
92 * @param fd The fileDescriptor data source.
93 * @param offset The offset into the file to start reading.
94 * @param size the length in bytes to read.
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_arc.h40 * @param centerX,centerY Arc Center.
41 * @param rx Ellipse Arc Transverse Axis Radius.
42 * @param ry Ellipse Arc Vertical Axis Radius.
43 * @param angle1,angle2 Starting angle.
44 * @param isClockwise Is the arc clockwise.
62 * @param scale Is the ratio between viewport coordinates and logical coordinates.
71 * @param scale Is the ratio between viewport coordinates and logical coordinates.
83 * @param x Pointer to the value of point coordinate X£¬y A pointer to the value of the point coordinate y
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/include/
H A Ddrawing_record_cmd.h62 * @param recordCmdUtils Indicates the pointer to an <b>OH_Drawing_RecordCmdUtils</b> object.
75 * @param recordCmdUtils Indicates the pointer to an <b>OH_Drawing_RecordCmdUtils</b> object.
76 * @param width Width of canvas object.
77 * @param height Height of canvas object.
78 * @param canvas Indicates a secondary pointer to an <b>OH_Drawing_Canvas</b>object.
94 * @param recordCmdUtils Indicates the pointer to an <b>OH_Drawing_RecordCmdUtils</b> object.
95 * @param recordCmd Indicates a secondary pointer to an <b>OH_Drawing_RecordCmd</b> object.
110 * @param recordCmd Indicates the pointer to an <b>OH_Drawing_RecordCmd</b> object.

Completed in 14 milliseconds

1...<<181182183184185186187188189190>>...899