/base/hiviewdfx/hilog/frameworks/libhilog/socket/ |
H A D | dgram_socket_server.cpp | 33 std::array<char, CMSG_SPACE(sizeof(struct ucred))> control = {0}; in RecvPacket() local 44 msgh.msg_control = control.data(); in RecvPacket() 45 msgh.msg_controllen = control.size(); in RecvPacket()
|
/base/tee/tee_client/services/teecd/src/ |
H A D | misc_work_agent.c | 58 void *MiscWorkThread(void *control) in MiscWorkThread() argument 63 if (control == NULL) { in MiscWorkThread() 66 transControl = (struct MiscControlType *)control; in MiscWorkThread()
|
H A D | tee_agent.c | 52 static int AgentInit(unsigned int id, void **control) in AgentInit() argument 57 if (control == NULL) { in AgentInit() 76 *control = args.buffer; in AgentInit()
|
H A D | secfile_load_agent.c | 265 void *SecfileLoadAgentThread(void *control) in SecfileLoadAgentThread() argument 269 if (control == NULL) { in SecfileLoadAgentThread() 270 tloge("control is NULL\n"); in SecfileLoadAgentThread() 273 secAgentControl = (struct SecAgentControlType *)control; in SecfileLoadAgentThread()
|
H A D | fs_work_agent.c | 1216 void *FsWorkThread(void *control) in FsWorkThread() argument 1221 if (control == NULL) { in FsWorkThread() 1224 transControl = control; in FsWorkThread()
|
/base/startup/init/interfaces/innerkits/fd_holder/ |
H A D | fd_holder_internal.c | 29 BEGET_LOGE("Build control message with invalid parameter"); in BuildControlMessage() 44 BEGET_ERROR_CHECK(msghdr->msg_control != NULL, return -1, "Failed to build control message"); in BuildControlMessage() 121 CMSG_SPACE(sizeof(int) * MAX_HOLD_FDS)) control; in ReceiveFds() local 123 BEGET_ERROR_CHECK(sizeof(control) <= PAGE_SIZE, return NULL, "Too many fds, out of memory"); in ReceiveFds() 128 .msg_control = &control, in ReceiveFds() 129 .msg_controllen = sizeof(control), in ReceiveFds()
|
/base/tee/tee_client/services/teecd/include/ |
H A D | misc_work_agent.h | 44 void *MiscWorkThread(void *control);
|
H A D | secfile_load_agent.h | 49 void *SecfileLoadAgentThread(void *control);
|
H A D | fs_work_agent.h | 164 void *FsWorkThread(void *control);
|
/base/msdp/device_status/rust/data/sys/src/ |
H A D | plugin_manager.rs | 54 fn control(&self, context: &CallingContext, id: u32, data: &BorrowedMsgParcel, reply: &mut BorrowedMsgParcel) -> FusionResult<()>; in control() functions
|
/base/msdp/device_status/rust/modules/basic/client/src/ |
H A D | lib.rs | 50 ipc_client.control(Intention::Basic, u32::from(BasicParamID::AllocSocketPair), in alloc_socket_pair()
|
/base/hiviewdfx/hiview/plugins/sysevent_source/ |
H A D | event_server.cpp | 117 void InitMsgh(char* buffer, int bufferLen, std::array<char, CMSG_SPACE(sizeof(struct ucred))>& control,
in InitMsgh() argument 125 msgh.msg_control = control.data();
in InitMsgh() 126 msgh.msg_controllen = control.size();
in InitMsgh() 238 std::array<char, CMSG_SPACE(sizeof(struct ucred))> control = {0};
in ReceiveMsg() local 244 InitMsgh(buffer, BUFFER_SIZE, control, msgh, iov);
in ReceiveMsg()
|
/base/msdp/device_status/rust/ipc/service/src/ |
H A D | lib.rs | 72 fn control(&self, intention: Intention, id: u32, data: &BorrowedMsgParcel<'_>, reply: &mut BorrowedMsgParcel<'_>) -> FusionResult<()>; in control() functions 115 info!(LOG_LABEL, "Call stub.control()"); 116 stub.control(intention, id, data, reply) 228 fn control(&self, intention: Intention, id: u32, data: &BorrowedMsgParcel<'_>, in control() functions 230 call_debug_enter!("FusionIpcProxy::control"); in control()
|
/base/msdp/device_status/rust/ipc/server/src/ |
H A D | fusion_ipc_delegator.rs | 183 fn control(&self, intention: Intention, id: u32, data: &BorrowedMsgParcel, in control() functions 185 call_debug_enter!("FusionIpcDelegator::control"); in control() 190 info!(LOG_LABEL, "Call plugin.control()"); in control() 191 plugin.control(&context, id, data, reply) in control()
|
/base/msdp/device_status/rust/modules/basic/server/src/ |
H A D | lib.rs | 115 fn control(&self, context: &CallingContext, id: u32, data: &BorrowedMsgParcel, in control() functions 117 call_debug_enter!("FusionBasicServer::control"); in control()
|
/base/msdp/device_status/rust/modules/coordination/server/src/ |
H A D | lib.rs | 101 fn control(&self, context: &CallingContext, id: u32, data: &BorrowedMsgParcel, in control() functions 103 call_debug_enter!("FusionCoordinationServer::control"); in control()
|
/base/msdp/device_status/rust/modules/drag/server/src/ |
H A D | lib.rs | 132 fn control(&self, context: &CallingContext, id: u32, data: &BorrowedMsgParcel, in control() functions 134 call_debug_enter!("FusionDragServer::control"); in control()
|
/base/msdp/device_status/rust/ipc/client/src/ |
H A D | lib.rs | 272 pub fn control(&self, intention: Intention, id: u32, data: &dyn Serialize, in control() functions 274 call_debug_enter!("FusionIpcClient::control"); in control() 284 info!(LOG_LABEL, "Call proxy.control()"); 285 self.0.control(intention, id, &borrowed_data_parcel, reply)
|
/base/telephony/cellular_call/services/manager/src/ |
H A D | cellular_call_service.cpp | 697 auto control = GetImsControl(slotId); in InviteToConference() local 698 if (control == nullptr) { in InviteToConference() 699 TELEPHONY_LOGE("CellularCallService::InviteToConference return, control is nullptr"); in InviteToConference() 702 return control->InviteToConference(slotId, numberList); in InviteToConference() 962 auto control = GetImsControl(slotId); in StartRtt() local 963 if (control == nullptr) { in StartRtt() 964 TELEPHONY_LOGE("CellularCallService::StartRtt return, control is nullptr"); in StartRtt() 967 return control->StartRtt(slotId, msg); in StartRtt() 972 auto control = GetImsControl(slotId); in StopRtt() local 973 if (control in StopRtt() [all...] |
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | native_media_player_impl.cpp | 400 napi_value control = nullptr; in ConstructControls() local 402 env_, controls[i].c_str(), controls[i].length(), &control)); in ConstructControls() 403 NAPI_CALL_RETURN_VOID(env_, napi_set_element(env_, *value, i, control)); in ConstructControls()
|
H A D | webview_controller.cpp | 147 auto control = it->second; in FromID() local 148 return control; in FromID()
|
/base/notification/common_event_service/services/src/ |
H A D | common_event_control_manager.cpp | 144 auto control = weak.lock(); in PublishFrozenEventsInner() 145 if (control == nullptr) { in PublishFrozenEventsInner() 149 control->NotifyFreezeEvents(subscriberRecord, eventRecord); in PublishFrozenEventsInner()
|
/base/powermgr/display_manager/state_manager/service/native/src/ |
H A D | display_power_mgr_service.cpp | 602 auto control = iter.second; in DumpDisplayInfo() local
|