Home
last modified time | relevance | path

Searched full:param (Results 401 - 425 of 22011) sorted by relevance

1...<<11121314151617181920>>...881

/foundation/distributeddatamgr/data_share/interfaces/inner_api/common/include/
H A Ddatashare_abs_predicates.h38 * @param field Indicates the target field.
39 * @param value Indicates the queried value.
46 * @param field Indicates the target field.
47 * @param value Indicates the queried value.
54 * @param field Indicates the target field.
55 * @param value Indicates the queried value.
62 * @param field Indicates the target field.
63 * @param value Indicates the queried value.
70 * @param field Indicates the target field.
71 * @param valu
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Duldnames.h65 * @param locale the display locale
66 * @param dialectHandling how to select names for locales
68 * @param pErrorCode the status code
78 * @param ldn the ULocaleDisplayNames instance to be closed
108 * @param ldn the LocaleDisplayNames instance
117 * @param ldn the LocaleDisplayNames instance
128 * @param ldn the LocaleDisplayNames instance
129 * @param locale the locale whose display name to return
130 * @param result receives the display name
131 * @param maxResultSiz
[all...]
/third_party/mbedtls/library/
H A Dpsa_crypto_ecp.h29 * \param[in] type The type of key contained in \p data.
30 * \param[in] curve_bits The nominal bit-size of the curve.
38 * \param[in] data The buffer from which to load the representation.
39 * \param[in] data_length The size in bytes of \p data.
40 * \param[out] p_ecp Returns a pointer to an ECP context on success.
53 * \param ecp The ECP context to load the public part for.
67 * \param[in] attributes The attributes for the key to import.
68 * \param[in] data The buffer containing the key data in import
70 * \param[in] data_length Size of the \p data buffer in bytes.
71 * \param[ou
[all...]
H A Dbignum_core.h97 * \param a Integer to count leading zero bits.
109 * \param[in] A The address of the MPI.
110 * \param A_limbs The number of limbs of \p A.
119 * \param[in,out] A The address of the MPI.
120 * \param A_limbs The number of limbs of \p A.
130 * \param min A machine integer.
131 * \param[in] A An MPI.
132 * \param A_limbs The number of limbs of \p A.
145 * \param A The left-hand MPI. This must point to an array of limbs
147 * \param
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Duldnames.h65 * @param locale the display locale
66 * @param dialectHandling how to select names for locales
68 * @param pErrorCode the status code
78 * @param ldn the ULocaleDisplayNames instance to be closed
108 * @param ldn the LocaleDisplayNames instance
117 * @param ldn the LocaleDisplayNames instance
128 * @param ldn the LocaleDisplayNames instance
129 * @param locale the locale whose display name to return
130 * @param result receives the display name
131 * @param maxResultSiz
[all...]
/third_party/mindspore/interfaces/kits/c/
H A Dcontext.h60 * @param context Context object handle address.
67 * @param context Context object handle.
68 * @param thread_num the number of threads at runtime.
75 * @param context Context object handle.
83 * @param context Context object handle.
84 * @param mode: 0: no affinities, 1: big cores first, 2: little cores first
91 * @param context Context object handle.
103 * @param context Context object handle.
104 * @param core_list: a array of thread core lists.
105 * @param core_nu
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Duldnames.h65 * @param locale the display locale
66 * @param dialectHandling how to select names for locales
68 * @param pErrorCode the status code
78 * @param ldn the ULocaleDisplayNames instance to be closed
108 * @param ldn the LocaleDisplayNames instance
117 * @param ldn the LocaleDisplayNames instance
128 * @param ldn the LocaleDisplayNames instance
129 * @param locale the locale whose display name to return
130 * @param result receives the display name
131 * @param maxResultSiz
[all...]
/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/
H A Dnapi_common_util.cpp26 bool IsTypeForNapiValue(napi_env env, napi_value param, napi_valuetype expectType) in IsTypeForNapiValue() argument
31 if (param == nullptr) { in IsTypeForNapiValue()
32 TAG_LOGD(AAFwkTag::JSNAPI, "param is nullptr"); in IsTypeForNapiValue()
36 if (napi_typeof(env, param, &valueType) != napi_ok) { in IsTypeForNapiValue()
43 bool IsArrayForNapiValue(napi_env env, napi_value param, uint32_t &arraySize) in IsArrayForNapiValue() argument
49 if (napi_is_array(env, param, &isArray) != napi_ok || isArray == false) { in IsArrayForNapiValue()
53 if (napi_get_array_length(env, param, &arraySize) != napi_ok) { in IsArrayForNapiValue()
88 int UnwrapInt32FromJS(napi_env env, napi_value param, int defaultValue) in UnwrapInt32FromJS() argument
91 if (napi_get_value_int32(env, param, &value) == napi_ok) { in UnwrapInt32FromJS()
98 bool UnwrapInt32FromJS2(napi_env env, napi_value param, in argument
114 UnwrapLongFromJS(napi_env env, napi_value param, long defaultValue) UnwrapLongFromJS() argument
124 UnwrapLongFromJS2(napi_env env, napi_value param, long &value) UnwrapLongFromJS2() argument
142 UnwrapInt64FromJS(napi_env env, napi_value param, int64_t defaultValue) UnwrapInt64FromJS() argument
152 UnwrapInt64FromJS2(napi_env env, napi_value param, int64_t &value) UnwrapInt64FromJS2() argument
168 UnwrapBoolFromJS(napi_env env, napi_value param, bool defaultValue) UnwrapBoolFromJS() argument
178 UnwrapBoolFromJS2(napi_env env, napi_value param, bool &value) UnwrapBoolFromJS2() argument
194 UnwrapDoubleFromJS(napi_env env, napi_value param, double defaultValue) UnwrapDoubleFromJS() argument
204 UnwrapDoubleFromJS2(napi_env env, napi_value param, double &value) UnwrapDoubleFromJS2() argument
220 UnwrapStringFromJS(napi_env env, napi_value param, const std::string &defaultValue) UnwrapStringFromJS() argument
253 UnwrapStringFromJS2(napi_env env, napi_value param, std::string &value) UnwrapStringFromJS2() argument
299 UnwrapArrayInt32FromJS(napi_env env, napi_value param, std::vector<int> &value) UnwrapArrayInt32FromJS() argument
346 UnwrapArrayLongFromJS(napi_env env, napi_value param, std::vector<long> &value) UnwrapArrayLongFromJS() argument
393 UnwrapArrayInt64FromJS(napi_env env, napi_value param, std::vector<int64_t> &value) UnwrapArrayInt64FromJS() argument
440 UnwrapArrayDoubleFromJS(napi_env env, napi_value param, std::vector<double> &value) UnwrapArrayDoubleFromJS() argument
487 UnwrapArrayBoolFromJS(napi_env env, napi_value param, std::vector<bool> &value) UnwrapArrayBoolFromJS() argument
532 UnwrapArrayStringFromJS(napi_env env, napi_value param, std::vector<std::string> &value) UnwrapArrayStringFromJS() argument
600 UnwrapArrayComplexFromJS(napi_env env, napi_value param, ComplexArrayData &value) UnwrapArrayComplexFromJS() argument
947 CreateAsyncCallback(napi_env env, napi_value param, AsyncJSCallbackInfo *callback) CreateAsyncCallback() argument
965 CreateCallbackRefFromJS(napi_env env, napi_value param) CreateCallbackRefFromJS() argument
994 ExecuteAsyncCallbackWork(napi_env env, AsyncJSCallbackInfo *asyncCallbackInfo, const AsyncParamEx *param) ExecuteAsyncCallbackWork() argument
1028 ExecutePromiseCallbackWork(napi_env env, AsyncJSCallbackInfo *asyncCallbackInfo, const AsyncParamEx *param) ExecutePromiseCallbackWork() argument
[all...]
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-http.h45 * \param file: filename
46 * \param m: NULL, or mount context
58 * \param wsi: Websocket instance (available from user callback)
59 * \param file: The file to issue over http
60 * \param content_type: The http content type, eg, text/html
61 * \param other_headers: NULL or pointer to header string
62 * \param other_headers_len: length of the other headers if non-NULL
156 * \param args: buffer to process using chunked encoding
157 * \param s: current processing state
389 * \param toke
[all...]
H A Dlws-genrsa.h59 * \param ctx: your struct lws_genrsa_ctx
60 * \param el: struct prepared with key element data
61 * \param context: lws_context for RNG
62 * \param mode: RSA mode, one of LGRSAM_ constants
63 * \param oaep_hashid: the lws genhash id for the hash used in MFG1 hash
84 * \param el: your struct lws_gencrypto_keyelem
98 * \param context: your struct lws_context (may be used for RNG)
99 * \param ctx: your struct lws_genrsa_ctx
100 * \param mode: RSA mode, one of LGRSAM_ constants
101 * \param e
[all...]
/base/powermgr/power_manager/test/unittest/src/
H A Drunning_lock_mock_test.cpp89 EXPECT_CALL(*g_lockAction, Lock(_)).WillRepeatedly([&](const RunningLockParam& param) { in HWTEST_F()
90 EXPECT_EQ(param.name, RUNNINGLOCK_BACKGROUND_NAME); in HWTEST_F()
91 EXPECT_EQ(param.type, RunningLockType::RUNNINGLOCK_BACKGROUND); in HWTEST_F()
92 EXPECT_EQ(param.timeoutMs, RUNNINGLOCKPARAM_TIMEOUTMS_DEF); in HWTEST_F()
96 EXPECT_CALL(*g_lockAction, Unlock(_)).WillRepeatedly([&](const RunningLockParam& param) { in HWTEST_F()
97 EXPECT_EQ(param.name, RUNNINGLOCK_BACKGROUND_NAME); in HWTEST_F()
98 EXPECT_EQ(param.type, RunningLockType::RUNNINGLOCK_BACKGROUND); in HWTEST_F()
145 EXPECT_CALL(*g_lockAction, Lock(_)).WillRepeatedly([&](const RunningLockParam& param) { in HWTEST_F()
146 EXPECT_EQ(param.name, RUNNINGLOCK_BACKGROUND_NAME); in HWTEST_F()
147 EXPECT_EQ(param in HWTEST_F()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DjsdocParamTagTypeLiteral.errors.txt1 tests/cases/conformance/jsdoc/0.js(3,20): error TS8024: JSDoc '@param' tag has name 'unrelated', but there is no parameter with that name.
6 * @param {Object} notSpecial
7 * @param {string} unrelated - not actually related because it's not notSpecial.unrelated
9 !!! error TS8024: JSDoc '@param' tag has name 'unrelated', but there is no parameter with that name.
17 * @param {Object} opts1 doc1
18 * @param {string} opts1.x doc2
19 * @param {string=} opts1.y doc3
20 * @param {string} [opts1.z] doc4
21 * @param {string} [opts1.w="hi"] doc5
30 * @param {Objec
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_service.h112 * @param device The remote device.
121 * @param device The remote device.
154 * @param device The remote device.
163 * @param device The remote device.
172 * @param states The specified states.
181 * @param device: The remote device.
190 * @param device The remote device.
199 * @param device Remote device object.
200 * @param code DTMF tone code.
209 * @param devic
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dability_manager_service.h86 constexpr const char* KEY_SESSION_ID = "com.ohos.param.sessionId";
116 * @param want, the want of the ability to start.
117 * @param requestCode, Ability request code.
118 * @param userId, Designation User ID.
127 * @param want, the want of the ability to start.
128 * @param callerToken, caller ability token.
129 * @param userId, Designation User ID.
130 * @param requestCode the resultCode of the ability to start.
142 * @param want, the want of the ability to start.
143 * @param callerToke
[all...]
/third_party/mesa3d/src/mapi/glapi/gen/
H A DARB_clear_buffer_object.xml12 <param name="target" type="GLenum"/>
13 <param name="internalformat" type="GLenum"/>
14 <param name="format" type="GLenum"/>
15 <param name="type" type="GLenum"/>
16 <param name="data" type="const GLvoid *"/>
20 <param name="target" type="GLenum"/>
21 <param name="internalformat" type="GLenum"/>
22 <param name="offset" type="GLintptr"/>
23 <param name="size" type="GLsizeiptr"/>
24 <param nam
[all...]
/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h66 * @param userId ID of the user who has connected to the WMS.
68 * @param screenId ID of the screen that is connected to the WMS, screenId is currently always 0.
74 * @param userId ID of the user who has disconnected to the WMS.
76 * @param screenId ID of the screen that is disconnected to the WMS, screenId is currently always 0.
91 * @param focusChangeInfo Window info while its focus status changed.
97 * @param focusChangeInfo Window info while its focus status changed.
112 * @param mode Window mode.
128 * @param displayId ID of display.
129 * @param tints Tint of system bar region.
144 * @param enabl
[all...]
/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/
H A Dwifi_hal_crpc_p2p.h27 * @param server - Pointer to the global structure of the communication server.
28 * @param context - Pointer to the global communication context structure of the server.
36 * @param server - Pointer to the global structure of the communication server.
37 * @param context - Pointer to the global communication context structure of the server.
45 * @param server - Pointer to the global structure of the communication server.
46 * @param context - Pointer to the global communication context structure of the server.
54 * @param server - Pointer to the global structure of the communication server.
55 * @param context - Pointer to the global communication context structure of the server.
63 * @param server - Pointer to the global structure of the communication server.
64 * @param contex
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/hci/cmd/
H A Dhci_cmd_failure_controller_baseband.c27 static void HciCmdOnSetEventMaskFailed(uint8_t status, const void *param) in HciCmdOnSetEventMaskFailed() argument
41 static void HciCmdOnResetFailed(uint8_t status, const void *param) in HciCmdOnResetFailed() argument
55 static void HciCmdOnSetEventFilterFailed(uint8_t status, const void *param) in HciCmdOnSetEventFilterFailed() argument
69 static void HciCmdOnFlushFailed(uint8_t status, const void *param) in HciCmdOnFlushFailed() argument
83 static void HciCmdOnReadPinTypeFailed(uint8_t status, const void *param) in HciCmdOnReadPinTypeFailed() argument
97 static void HciCmdOnWritePinTypeFailed(uint8_t status, const void *param) in HciCmdOnWritePinTypeFailed() argument
111 static void HciCmdOnCreateNewUnitKeyFailed(uint8_t status, const void *param) in HciCmdOnCreateNewUnitKeyFailed() argument
125 static void HciCmdOnReadStoredLinkKeyFailed(uint8_t status, const void *param) in HciCmdOnReadStoredLinkKeyFailed() argument
139 static void HciCmdOnDeleteStoredLinkKeyFailed(uint8_t status, const void *param) in HciCmdOnDeleteStoredLinkKeyFailed() argument
153 static void HciCmdOnWriteLocalNameFailed(uint8_t status, const void *param) in HciCmdOnWriteLocalNameFailed() argument
167 HciCmdOnReadLocalNameFailed(uint8_t status, const void *param) HciCmdOnReadLocalNameFailed() argument
181 HciCmdOnReadConnectionAcceptTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadConnectionAcceptTimeoutFailed() argument
195 HciCmdOnWriteConnectionAcceptTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteConnectionAcceptTimeoutFailed() argument
209 HciCmdOnReadPageTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadPageTimeoutFailed() argument
223 HciCmdOnWritePageTimeoutFailed(uint8_t status, const void *param) HciCmdOnWritePageTimeoutFailed() argument
237 HciCmdOnReadScanEnableFailed(uint8_t status, const void *param) HciCmdOnReadScanEnableFailed() argument
251 HciCmdOnWriteScanEnableFailed(uint8_t status, const void *param) HciCmdOnWriteScanEnableFailed() argument
265 HciCmdOnReadPageScanActivityFailed(uint8_t status, const void *param) HciCmdOnReadPageScanActivityFailed() argument
279 HciCmdOnWritePageScanActivityFailed(uint8_t status, const void *param) HciCmdOnWritePageScanActivityFailed() argument
293 HciCmdOnReadInquiryScanActivityFailed(uint8_t status, const void *param) HciCmdOnReadInquiryScanActivityFailed() argument
307 HciCmdOnWriteInquiryScanActivityFailed(uint8_t status, const void *param) HciCmdOnWriteInquiryScanActivityFailed() argument
321 HciCmdOnReadAuthenticationEnableFailed(uint8_t status, const void *param) HciCmdOnReadAuthenticationEnableFailed() argument
335 HciCmdOnWriteAuthenticationEnableFailed(uint8_t status, const void *param) HciCmdOnWriteAuthenticationEnableFailed() argument
349 HciCmdOnReadClassofDeviceFailed(uint8_t status, const void *param) HciCmdOnReadClassofDeviceFailed() argument
363 HciCmdOnWriteClassofDeviceFailed(uint8_t status, const void *param) HciCmdOnWriteClassofDeviceFailed() argument
377 HciCmdOnReadVoiceSettingFailed(uint8_t status, const void *param) HciCmdOnReadVoiceSettingFailed() argument
391 HciCmdOnWriteVoiceSettingFailed(uint8_t status, const void *param) HciCmdOnWriteVoiceSettingFailed() argument
405 HciCmdOnReadAutomaticFlushTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadAutomaticFlushTimeoutFailed() argument
420 HciCmdOnWriteAutomaticFlushTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteAutomaticFlushTimeoutFailed() argument
435 HciCmdOnReadNumBroadcastRetransmissionsFailed(uint8_t status, const void *param) HciCmdOnReadNumBroadcastRetransmissionsFailed() argument
449 HciCmdOnWriteNumBroadcastRetransmissionsFailed(uint8_t status, const void *param) HciCmdOnWriteNumBroadcastRetransmissionsFailed() argument
463 HciCmdOnReadHoldModeActivityFailed(uint8_t status, const void *param) HciCmdOnReadHoldModeActivityFailed() argument
477 HciCmdOnWriteHoldModeActivityFailed(uint8_t status, const void *param) HciCmdOnWriteHoldModeActivityFailed() argument
491 HciCmdOnReadTransmitPowerLevelFailed(uint8_t status, const void *param) HciCmdOnReadTransmitPowerLevelFailed() argument
505 HciCmdOnReadSynchronousFlowControlEnableFailed(uint8_t status, const void *param) HciCmdOnReadSynchronousFlowControlEnableFailed() argument
519 HciCmdOnWriteSynchronousFlowControlEnableFailed(uint8_t status, const void *param) HciCmdOnWriteSynchronousFlowControlEnableFailed() argument
533 HciCmdOnSetControllerToHostFlowControlFailed(uint8_t status, const void *param) HciCmdOnSetControllerToHostFlowControlFailed() argument
547 HciCmdOnHostBufferSizeFailed(uint8_t status, const void *param) HciCmdOnHostBufferSizeFailed() argument
561 HciCmdOnReadLinkSupervisionTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadLinkSupervisionTimeoutFailed() argument
576 HciCmdOnWriteLinkSupervisionTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteLinkSupervisionTimeoutFailed() argument
591 HciCmdOnReadNumberOfSupportedIACFailed(uint8_t status, const void *param) HciCmdOnReadNumberOfSupportedIACFailed() argument
605 HciCmdOnReadCurrentIacLapFailed(uint8_t status, const void *param) HciCmdOnReadCurrentIacLapFailed() argument
619 HciCmdOnWriteCurrentIacLapFailed(uint8_t status, const void *param) HciCmdOnWriteCurrentIacLapFailed() argument
633 HciCmdOnSetAfhHostChannelClassificationFailed(uint8_t status, const void *param) HciCmdOnSetAfhHostChannelClassificationFailed() argument
647 HciCmdOnReadInquiryScanTypeFailed(uint8_t status, const void *param) HciCmdOnReadInquiryScanTypeFailed() argument
661 HciCmdOnWriteInquiryScanTypeFailed(uint8_t status, const void *param) HciCmdOnWriteInquiryScanTypeFailed() argument
675 HciCmdOnReadInquiryModeFailed(uint8_t status, const void *param) HciCmdOnReadInquiryModeFailed() argument
689 HciCmdOnWriteInquiryModeFailed(uint8_t status, const void *param) HciCmdOnWriteInquiryModeFailed() argument
703 HciCmdOnReadPageScanTypeFailed(uint8_t status, const void *param) HciCmdOnReadPageScanTypeFailed() argument
773 HciCmdOnWriteExtendedInquiryResponseFailed(uint8_t status, const void *param) HciCmdOnWriteExtendedInquiryResponseFailed() argument
787 HciCmdOnReadSimplePairingModeFailed(uint8_t status, const void *param) HciCmdOnReadSimplePairingModeFailed() argument
801 HciCmdOnWriteSimplePairingModeFailed(uint8_t status, const void *param) HciCmdOnWriteSimplePairingModeFailed() argument
815 HciCmdOnReadLocalOobDataFailed(uint8_t status, const void *param) HciCmdOnReadLocalOobDataFailed() argument
829 HciCmdOnReadInquiryResponseTransmitPowerLevelFailed(uint8_t status, const void *param) HciCmdOnReadInquiryResponseTransmitPowerLevelFailed() argument
843 HciCmdOnWriteInquiryTransmitPowerLevelFailed(uint8_t status, const void *param) HciCmdOnWriteInquiryTransmitPowerLevelFailed() argument
857 HciCmdOnSendKeypressNotificationFailed(uint8_t status, const void *param) HciCmdOnSendKeypressNotificationFailed() argument
872 HciCmdOnReadDefaultErroneousDataReportingFailed(uint8_t status, const void *param) HciCmdOnReadDefaultErroneousDataReportingFailed() argument
886 HciCmdOnWriteDefaultErroneousDataReportingFailed(uint8_t status, const void *param) HciCmdOnWriteDefaultErroneousDataReportingFailed() argument
900 HciCmdOnReadLogicalLinkAcceptTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadLogicalLinkAcceptTimeoutFailed() argument
914 HciCmdOnWriteLogicalLinkAcceptTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteLogicalLinkAcceptTimeoutFailed() argument
928 HciCmdOnSetEventMaskPage2Failed(uint8_t status, const void *param) HciCmdOnSetEventMaskPage2Failed() argument
942 HciCmdOnReadLocationDataFailed(uint8_t status, const void *param) HciCmdOnReadLocationDataFailed() argument
956 HciCmdOnWriteLocationDataFailed(uint8_t status, const void *param) HciCmdOnWriteLocationDataFailed() argument
970 HciCmdOnReadFlowControlModeFailed(uint8_t status, const void *param) HciCmdOnReadFlowControlModeFailed() argument
984 HciCmdOnWriteFlowControlModeFailed(uint8_t status, const void *param) HciCmdOnWriteFlowControlModeFailed() argument
998 HciCmdOnReadEnhancedTransmitPowerLevelFailed(uint8_t status, const void *param) HciCmdOnReadEnhancedTransmitPowerLevelFailed() argument
1013 HciCmdOnReadBestEffortFlushTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadBestEffortFlushTimeoutFailed() argument
1027 HciCmdOnWriteBestEffortFlushTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteBestEffortFlushTimeoutFailed() argument
1041 HciCmdOnReadLeHostSupportFailed(uint8_t status, const void *param) HciCmdOnReadLeHostSupportFailed() argument
1055 HciCmdOnWriteLeHostSupportFailed(uint8_t status, const void *param) HciCmdOnWriteLeHostSupportFailed() argument
1069 HciCmdOnSetMwsChannelParametersFailed(uint8_t status, const void *param) HciCmdOnSetMwsChannelParametersFailed() argument
1083 HciCmdOnSetMwsSignalingFailed(uint8_t status, const void *param) HciCmdOnSetMwsSignalingFailed() argument
1097 HciCmdOnSetMwsTransportLayerFailed(uint8_t status, const void *param) HciCmdOnSetMwsTransportLayerFailed() argument
1111 HciCmdOnSetReservedLtAddrFailed(uint8_t status, const void *param) HciCmdOnSetReservedLtAddrFailed() argument
1125 HciCmdOnDeleteReservedLtAddrFailed(uint8_t status, const void *param) HciCmdOnDeleteReservedLtAddrFailed() argument
1139 HciCmdOnReadSynchronizationTrainParametersFailed(uint8_t status, const void *param) HciCmdOnReadSynchronizationTrainParametersFailed() argument
1153 HciCmdOnWriteSynchronizationTrainParametersFailed(uint8_t status, const void *param) HciCmdOnWriteSynchronizationTrainParametersFailed() argument
1167 HciCmdOnReadSecureConnectionsHostSupportFailed(uint8_t status, const void *param) HciCmdOnReadSecureConnectionsHostSupportFailed() argument
1181 HciCmdOnWriteSecureConnectionsHostSupportFailed(uint8_t status, const void *param) HciCmdOnWriteSecureConnectionsHostSupportFailed() argument
1195 HciCmdOnReadAuthenticatedPayloadTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadAuthenticatedPayloadTimeoutFailed() argument
1210 HciCmdOnWriteAuthenticatedPayloadTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteAuthenticatedPayloadTimeoutFailed() argument
1225 HciCmdOnReadLocalOobExtendedDataFailed(uint8_t status, const void *param) HciCmdOnReadLocalOobExtendedDataFailed() argument
1239 HciCmdOnReadExtendedPageTimeoutFailed(uint8_t status, const void *param) HciCmdOnReadExtendedPageTimeoutFailed() argument
1253 HciCmdOnWriteExtendedPageTimeoutFailed(uint8_t status, const void *param) HciCmdOnWriteExtendedPageTimeoutFailed() argument
1267 HciCmdOnReadExtendedInquiryLengthFailed(uint8_t status, const void *param) HciCmdOnReadExtendedInquiryLengthFailed() argument
1281 HciCmdOnWriteExtendedInquiryLengthFailed(uint8_t status, const void *param) HciCmdOnWriteExtendedInquiryLengthFailed() argument
1430 HciOnControllerBasebandCmdFailed(uint16_t opCode, uint8_t status, const void *param) HciOnControllerBasebandCmdFailed() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dudatpg.h161 * @param locale
162 * @param pErrorCode a pointer to the UErrorCode which must not indicate a
172 * @param pErrorCode a pointer to the UErrorCode which must not indicate a
182 * @param dtpg a pointer to UDateTimePatternGenerator.
209 * @param dtpg a pointer to UDateTimePatternGenerator to be copied.
210 * @param pErrorCode a pointer to the UErrorCode which must not indicate a
228 * @param dtpg a pointer to UDateTimePatternGenerator.
229 * @param skeleton
232 * @param length the length of skeleton
233 * @param bestPatter
[all...]
H A Dtzrule.h55 * @param that The object to be compared with.
64 * @param that The object to be compared with.
72 * @param name Receives the name of this time zone.
97 * @param other The <code>TimeZoneRule</code> object to be compared with.
105 * @param prevRawOffset The standard time offset from UTC before this rule
107 * @param prevDSTSavings The amount of daylight saving offset from the
109 * @param result Receives the very first time when this rule takes effect.
118 * @param prevRawOffset The standard time offset from UTC before this rule
120 * @param prevDSTSavings The amount of daylight saving offset from the
122 * @param resul
[all...]
/base/account/os_account/interfaces/innerkits/osaccount/native/include/
H A Dos_account_manager.h53 * @param localName - Indicates the local name of the OS account to create.
54 * @param type - Indicates the type of the OS account to create.
55 * @param osAccountInfo - Indicates the information about the created OS account.
63 * @param localName - Indicates the local name of the OS account to create.
64 * @param shortName - Indicates the short name of the OS account to create.
65 * @param type - Indicates the type of the OS account to create.
66 * @param osAccountInfo - Indicates the information about the created OS account.
75 * @param localName - Indicates the local name of the OS account to create.
76 * @param shortName - Indicates the short name of the OS account to create.
77 * @param typ
[all...]
/base/notification/distributed_notification_service/frameworks/core/include/
H A Dans_manager_stub.h38 * @param data Indicates the input parcel.
39 * @param reply Indicates the output parcel.
40 * @param option Indicates the message option.
51 * @param label Indicates the label of the notification to publish.
52 * @param notification Indicates the NotificationRequest object for setting the notification content.
63 * @param notification Indicates the NotificationRequest object for setting the notification content.
72 * @param notificationId Indicates the ID of the notification to cancel.
73 * @param label Indicates the label of the notification to cancel.
74 * @param instanceKey Indicates the application instance key.
82 * @param instanceKe
[all...]
/base/telephony/cellular_call/services/common/include/
H A Dsupplement_request_cs.h29 * @param slotId Indicates the card slot index number,
31 * @param index Indicates the index of command.
39 * @param slotId Indicates the card slot index number,
41 * @param action Indicates the action for SetClir,
43 * @param index Indicates the index of command.
51 * @param slotId Indicates the card slot index number,
53 * @param index Indicates the index of command.
61 * @param slotId Indicates the card slot index number,
63 * @param reason Indicates the reason of the get call transfer.
64 * @param inde
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/
H A Ddebug.h95 * \param threshold theshold level of messages to filter on. Messages at a
111 * \param ssl SSL context
112 * \param level error level of the debug message
113 * \param file file the message has occurred in
114 * \param line line number the message has occurred at
115 * \param format format specifier, in printf format
116 * \param ... variables used by the format specifier
130 * \param ssl SSL context
131 * \param level error level of the debug message
132 * \param fil
[all...]
/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gap.h143 * @param localName Device name.
144 * @param length localName length, The maximum length of the name is {@link OHOS_BD_NAME_LEN}.
152 * @param mode Scan mode, see details {@link GapBtScanMode}.
153 * @param duration Scan time.
162 * @param bdAddr device address.
163 * @param transport Transport type, details see {@link BtTransportId}
164 * @param accept Set gap accept flag.
173 * @param bdAddr device address.
174 * @param transport Transport type, details see {@link BtTransportId}
175 * @param accep
[all...]

Completed in 16 milliseconds

1...<<11121314151617181920>>...881