| /foundation/communication/ipc/interfaces/innerkits/ipc_core/include/ |
| H A D | iremote_object.h | 64 * @param object Indicates the IRemoteObject pointer object. 80 * @param code Indicates the message code of the request. 81 * @param data Indicates the object storing the data to be sent. 82 * @param reply Indicates the object receiving the response data. 83 * @param option Indicates a synchronous (default) or asynchronous request. 133 * @param parcel Indicates a marshaling parcel type object. 148 * @param parcel Indicates a marshaling parcel type object. 149 * @param object Indicates an IRemoteObject pointer type object. 164 * @param fd Indicates the file descriptor. 165 * @param arg [all...] |
| /foundation/communication/netmanager_base/services/netmanagernative/bpf/include/netfirewall/ |
| H A D | netfirewall_ct.h | 102 * @param entry struct ct_entry
103 * @param tcp tcp connection
104 * @param dir enum ct_dir
105 * @param seen_flags union tcp_flags
130 * @param tuple struct ct_tuple
131 * @param skb struct __sk_buff
132 * @param dir enum ct_dir
152 * @param skb struct __sk_buff
153 * @param tuple struct ct_tuple
154 * @param di [all...] |
| /foundation/communication/dsoftbus/core/transmission/ipc/standard/src/ |
| H A D | trans_client_proxy.cpp | 155 TRANS_LOGE(TRANS_CTRL, "Invalid param"); in ClientIpcSetChannelInfo() 195 int32_t ClientIpcOnChannelQosEvent(const char *pkgName, const QosParam *param) in ClientIpcOnChannelQosEvent() argument 197 sptr<TransClientProxy> clientProxy = GetClientProxy(pkgName, param->pid); in ClientIpcOnChannelQosEvent() 202 clientProxy->OnChannelQosEvent(param->channelId, param->channelType, param->eventId, in ClientIpcOnChannelQosEvent() 203 param->tvCount, param->tvList); in ClientIpcOnChannelQosEvent() 210 TRANS_LOGE(TRANS_SDK, "invalid param."); in ClientIpcOnTransLimitChange() 225 TRANS_LOGE(TRANS_SDK, "invalid param in CheckServiceIsRegistered() [all...] |
| /foundation/communication/nfc/services/src/nci_adapter/nci_native_default/include/ |
| H A D | nfcc_nci_adapter.h | 41 * @param listener The listener to receive field on/off event. 69 * @param techMask Supported rf technology for nfc. 70 * @param enableReaderMode True/false to enable/disable reader mode 71 * @param enableHostRouting True/false to enable/disable host routing 72 * @param restart True/false to restart or not restart 83 * @param rawData Data needed to send 90 * @param screenStateMask The state of screen 110 * @param fd File descriptor to store debug info. 132 * @param isStart True/false start/stop rf discovery. 189 static void PrivateNciCallback(uint8_t event, uint16_t paramLen, uint8_t *param); [all...] |
| /foundation/communication/netstack/interfaces/kits/c/net_websocket/include/ |
| H A D | net_websocket_type.h | 98 * @param client WebSocket client. 99 * @param openResult Content of the <b>open</b> message received by the WebSocket client. 108 * @param client WebSocket client. 109 * @param data Data received by the WebSocket client. 110 * @param length Length of the data received by the WebSocket client. 119 * @param client WebSocket client. 120 * @param errorResult Content of the connection error message received by the WebSocket client. 129 * @param client WebSocket client. 130 * @param closeResult Content of the <b>close</b> message received by the WebSocket client. 154 * @param header [all...] |
| /foundation/distributedhardware/distributed_camera/interfaces/inner_kits/native_cpp/camera_source/src/ |
| H A D | distributed_camera_source_proxy.cpp | 85 const std::string& reqId, const EnableParam& param) in RegisterDistributedHardware() 88 if (!CheckRegParams(devId, dhId, reqId, param)) { in RegisterDistributedHardware() 106 !data.WriteString(param.sinkVersion) || !data.WriteString(param.sinkAttrs)) { in RegisterDistributedHardware() 117 const std::string& reqId, const EnableParam& param) in CheckRegParams() 129 if (param.sinkVersion.empty() || param.sinkVersion.size() > PARAM_MAX_SIZE || in CheckRegParams() 130 param.sinkAttrs.empty() || param.sinkAttrs.size() > PARAM_MAX_SIZE) { in CheckRegParams() 131 DHLOGE("param i in CheckRegParams() 84 RegisterDistributedHardware(const std::string& devId, const std::string& dhId, const std::string& reqId, const EnableParam& param) RegisterDistributedHardware() argument 116 CheckRegParams(const std::string& devId, const std::string& dhId, const std::string& reqId, const EnableParam& param) CheckRegParams() argument [all...] |
| /foundation/filemanagement/app_file_service/frameworks/native/backup_ext/include/ |
| H A D | ext_backup.h | 38 * @param Want Indicates the {@link Want} structure containing startup information about the extension. 45 * @param record the extension record. 46 * @param application the application info. 47 * @param handler the extension handler. 48 * @param token the remote token. 61 * @param want Indicates the want of Service to start. 62 * @param restart Indicates the startup mode. The value true indicates that Service is restarted after being 64 * @param startId Indicates the number of times the Service extension has been started. The startId is 75 * @param want Indicates the {@link Want} structure containing connection information about the backup 93 * @param runtim [all...] |
| /foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/network/ |
| H A D | kernel_talker.cpp | 210 NotifyParam param; in HandleAllNotify() local 214 param.notify = NOTIFY_NONE; in HandleAllNotify() 215 int readSize = read(fd, ¶m, sizeof(NotifyParam)); in HandleAllNotify() 216 if ((readSize < (int)sizeof(NotifyParam)) || (param.notify == NOTIFY_NONE)) { in HandleAllNotify() 219 NotifyHandler(param); in HandleAllNotify() 223 void KernelTalker::NotifyHandler(NotifyParam ¶m) in NotifyHandler() argument 225 int cmd = param.notify; in NotifyHandler() 226 string cidStr(param.remoteCid, CID_MAX_LEN); in NotifyHandler() 229 GetSessionCallback_(param); in NotifyHandler() 232 CloseSessionCallback_(param in NotifyHandler() [all...] |
| /foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/ |
| H A D | kernel_talker_test.cpp | 58 g_talker = std::make_shared<KernelTalker>(g_wmp, [](NotifyParam ¶m) {}, [](int32_t fd) {}); in SetUpTestCase() 220 NotifyParam param; in HWTEST_F() local 221 param.notify = NOTIFY_GET_SESSION; in HWTEST_F() 223 g_talker->NotifyHandler(param); in HWTEST_F() 242 NotifyParam param; in HWTEST_F() local 243 param.notify = NOTIFY_OFFLINE; in HWTEST_F() 245 g_talker->NotifyHandler(param); in HWTEST_F() 264 NotifyParam param; in HWTEST_F() local 265 param.notify = NOTIFY_NONE; in HWTEST_F() 267 g_talker->NotifyHandler(param); in HWTEST_F() [all...] |
| /foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/ |
| H A D | draw_cmd_list.h | 30 * @param IMMEDIATE add op to continouns buffer immediately, overload will benefit from this 31 * @param DEFERRED add op to vector and then add to contiguous buffer if needed 41 * @param data A contiguous buffers. 42 * @param isCopy Whether to copy data or not. 69 * @param T The name of DrawOpItem class 70 * @param Args Constructs arguments to the DrawOpItem 105 * @param drawOpItem A real DrawOpItem instance 126 * @brief Marshalling Draw Ops Param from vector to contiguous buffers. 148 * @param canvas Implements the playback action of the DrawCmdList in the Canvas. 149 * @param rec [all...] |
| /test/xts/acts/ability/ability_runtime/apicover/stagesupplement/entry/src/main/ets/InsightIntents/ |
| H A D | IntentExecutorImpl.ts | 71 onExecuteInUIAbilityForegroundMode(name: string, param: Record<string, Object>, pageLoader: window.WindowStage): insightIntent.ExecuteResult { 72 hilog.info(0x0000, LOG_TAG, 'IntentName %{public}s, IntentParam %{public}s', name, JSON.stringify(param) ?? ''); 74 // start ability or not depends on "action" in intent param 75 let action = param.action; 115 onExecuteInUIAbilityBackgroundMode(name: string, param: Record<string, Object>): insightIntent.ExecuteResult { 116 hilog.info(0x0000, LOG_TAG, 'IntentName %{public}s, IntentParam %{public}s', name, JSON.stringify(param) ?? ''); 128 onExecuteInUIExtensionAbility(name: string, param: Record<string, Object>, pageLoader: UIExtensionContentSession): insightIntent.ExecuteResult { 129 hilog.info(0x0000, LOG_TAG, 'IntentName %{public}s, IntentParam %{public}s', name, JSON.stringify(param) ?? ''); 141 onExecuteInServiceExtensionAbility(name: string, param: Record<string, Object>): insightIntent.ExecuteResult { 142 hilog.info(0x0000, LOG_TAG, 'IntentName %{public}s, IntentParam %{public}s', name, JSON.stringify(param) [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | vlc.h | 65 * @param[in,out] vlc The VLC to be initialized; table and table_allocated 68 * @param[in] nb_bits The number of bits to use for the VLC table; 71 * @param[in] nb_codes The number of provided length and (if supplied) symbol 73 * @param[in] lens The lengths of the codes. Entries > 0 correspond to 77 * @param[in] lens_wrap Stride (in bytes) of the lengths. 78 * @param[in] symbols The symbols, i.e. what is returned from get_vlc2() 81 * @param[in] symbols_wrap Stride (in bytes) of the symbols. 82 * @param[in] symbols_size Size of the symbols. 1 and 2 are supported. 83 * @param[in] offset An offset to apply to all the valid symbols. 84 * @param[i [all...] |
| /third_party/ffmpeg/libavformat/ |
| H A D | asfcrypt.c | 33 * @param v number to invert, must be odd! 51 * @param keybuf buffer containing the keys 52 * @param keys output key array containing the keys for encryption in 65 * @param keys key array of ints to invert 102 * @param keys 32 bit numbers in machine endianness, 104 * @param key another key, this one must be the same for the decryption 105 * @param data data to encrypt 126 * @param keys 32 bit numbers in machine endianness, 128 * @param key another key, this one must be the same as for the encryption 129 * @param dat [all...] |
| H A D | id3v2.h | 97 * @param buf must be ID3v2_HEADER_SIZE byte long 98 * @param magic magic bytes to identify the header. 105 * @param buf must be ID3v2_HEADER_SIZE bytes long and point to the start of an 113 * @param metadata Parsed metadata is stored here 114 * @param[out] extra_meta If not NULL, extra metadata is parsed into a list of 124 * @param[out] extra_meta If not NULL, extra metadata is parsed into a list of 126 * @param[opt] max_search_search restrict ID3 magic number search (bytes from start) 154 * @param id3v2_version Subversion of ID3v2; supported values are 3 and 4 155 * @param magic magic bytes to identify the header 162 * @param extra_met [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| H A D | SimpleFormatter.java | 56 * @param pattern The pattern string. 70 * @param pattern The pattern string. 71 * @param min The pattern must have at least this many arguments. 72 * @param max The pattern must have at most this many arguments. 102 * @param appendTo Gets the formatted pattern and values appended. 103 * @param offsets offsets[i] receives the offset of where 107 * @param values The argument values. 124 * @param result Gets its contents replaced by the formatted pattern and values. 125 * @param offsets offsets[i] receives the offset of where 129 * @param value [all...] |
| /third_party/icu/icu4c/source/i18n/ |
| H A D | units_complexconverter.h | 62 * @param targetUnit could be any units type (single, compound or mixed). 63 * @param ratesInfo 64 * @param status 74 * @param inputUnit represents the source unit. (should be single or compound unit). 75 * @param outputUnits represents the output unit. could be any type. (single, compound or mixed). 76 * @param status 87 * @param inputUnit represents the source unit. (should be single or compound unit). 88 * @param outputUnits represents the output unit. could be any type. (single, compound or mixed). 89 * @param ratesInfo a ConversionRates instance containing the unit conversion rates. 90 * @param statu [all...] |
| H A D | rbt_set.h | 70 * @param status Output parameter filled in with success or failure status. 87 * @param data the new data value to be set. 104 * @param adoptedRule the rule to add 118 * @param parseError A pointer to UParseError to receive information about errors 120 * @param status Output parameter filled in with success or failure status. 129 * @param text the text to be transliterated 130 * @param index the position indices, which will be updated 131 * @param isIncremental if true, assume new text may be inserted 143 * @param result string to receive the rule strings. Current 145 * @param escapeUnprintabl [all...] |
| H A D | buddhcal.h | 64 * @param aLocale The given locale. 65 * @param success Indicates the status of BuddhistCalendar object construction. 80 * @param source the object to be copied. 87 * @param right the object to be copied. 154 * @param field one of the field numbers 155 * @param limitType one of <code>MINIMUM</code>, <code>GREATEST_MINIMUM</code>, 164 * @param eyear the extended year 165 * @param month the zero-based month, or 0 if useMonth is false 166 * @param useMonth if false, compute the day before the first day of 169 * @param retur [all...] |
| /third_party/icu/icu4c/source/common/ |
| H A D | hash.h | 41 * @param ignoreKeyCase If true, keys are case insensitive. 42 * @param status Error code 48 * @param ignoreKeyCase If true, keys are case insensitive. 49 * @param size initial size allocation 50 * @param status Error code 56 * @param keyComp Comparator for comparing the keys 57 * @param valueComp Comparator for comparing the values 58 * @param status Error code 64 * @param status Error code 107 * @param po [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| H A D | SimpleFormatter.java | 57 * @param pattern The pattern string. 70 * @param pattern The pattern string. 71 * @param min The pattern must have at least this many arguments. 72 * @param max The pattern must have at most this many arguments. 99 * @param appendTo Gets the formatted pattern and values appended. 100 * @param offsets offsets[i] receives the offset of where 104 * @param values The argument values. 120 * @param result Gets its contents replaced by the formatted pattern and values. 121 * @param offsets offsets[i] receives the offset of where 125 * @param value [all...] |
| /third_party/icu/icu4c/source/common/unicode/ |
| H A D | ucat.h | 79 * @param name string containing the full path pointing to the 87 * @param locale the locale for which we want to open the resource. If 91 * @param ec input/output error code. Upon output, 112 * @param catd a message catalog descriptor to be closed. May be NULL, 123 * @param catd a message catalog descriptor returned by u_catopen. 125 * @param set_num the message catalog set number. Sets need not be 128 * @param msg_num the message catalog message number within the 131 * @param s the default string. This is returned if the string 135 * @param len fill-in parameter to receive the length of the result. 138 * @param e [all...] |
| /third_party/libwebsockets/include/libwebsockets/ |
| H A D | lws-display.h | 104 * \param lds: the display state object 105 * \param ctx: the lws context 106 * \param autodim_ms: ms since last active report to dim display (<0 = never) 107 * \param off_ms: ms since dim to turn display off (<0 = never) 108 * \param bl_lcs: the led controller instance that has the backlight 109 * \param disp: generic display object we belong to 127 * \param lds: the display state we are changing 128 * \param target: the target brightness to transition to 139 * \param lds: the display state we are marking as active 150 * \param ld [all...] |
| /third_party/libwebsockets/include/libwebsockets/abstract/ |
| H A D | abstract.h | 73 * \param vhost: the struct lws_vhost to bind to 74 * \param user: opaque user pointer 75 * \param abstract_path: "protocol.transport" names 76 * \param ap_tokens: tokens for protocol options 77 * \param at_tokens: tokens for transport 78 * \param seq: optional sequencer we should bind to, or NULL 79 * \param opaque_user_data: data given in sequencer callback, if any 97 * \param pabs: pointer to the lws_abs_t * to free 108 * \param abs: the lws_abs_t describing the combination desired 122 * \param a [all...] |
| /third_party/libdrm/freedreno/msm/ |
| H A D | msm_pipe.c | 31 static int query_param(struct fd_pipe *pipe, uint32_t param, in query_param() argument 37 .param = param, in query_param() 52 enum fd_param_id param, uint64_t *value) in msm_pipe_get_param() 55 switch(param) { in msm_pipe_get_param() 73 ERROR_MSG("invalid param id: %d", param); in msm_pipe_get_param() 157 static uint64_t get_param(struct fd_pipe *pipe, uint32_t param) in get_param() argument 160 int ret = query_param(pipe, param, &value); in get_param() 162 ERROR_MSG("get-param faile in get_param() 51 msm_pipe_get_param(struct fd_pipe *pipe, enum fd_param_id param, uint64_t *value) msm_pipe_get_param() argument [all...] |
| /third_party/jsframework/runtime/preparation/ |
| H A D | methods.ts | 51 * @param {string} id - Id of a page. 52 * @param {string} code - JS Bundle code. 53 * @param {Options} config - Page config 54 * @param {Object} data - Data that needed. 77 * @param {*} args - Args. 91 * @param {string} pageId - Id of a page. 113 * @param {string} pageId - Id of a page. 114 * @param {*} tasks - Tasks from native. 127 * @param {string} id - Id of a page. 136 * @param {strin [all...] |