Home
last modified time | relevance | path

Searched refs:reply (Results 101 - 125 of 799) sorted by relevance

12345678910>>...32

/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dvendor.c26 struct sk_buff *reply; in brcmf_cfg80211_vndr_cmds_dcmd_handler() local
81 reply = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, payload); in brcmf_cfg80211_vndr_cmds_dcmd_handler()
82 if (NULL == reply) { in brcmf_cfg80211_vndr_cmds_dcmd_handler()
87 if (nla_put(reply, BRCMF_NLATTR_DATA, msglen, wr_pointer) || in brcmf_cfg80211_vndr_cmds_dcmd_handler()
88 nla_put_u16(reply, BRCMF_NLATTR_LEN, msglen)) { in brcmf_cfg80211_vndr_cmds_dcmd_handler()
89 kfree_skb(reply); in brcmf_cfg80211_vndr_cmds_dcmd_handler()
94 ret = cfg80211_vendor_cmd_reply(reply); in brcmf_cfg80211_vndr_cmds_dcmd_handler()
/kernel/linux/linux-6.6/tools/usb/usbip/src/
H A Dusbip_network.h31 uint32_t status; /* op_code status (for reply) */
74 #define PACK_OP_IMPORT_REPLY(pack, reply) do {\
75 usbip_net_pack_usb_device(pack, &(reply)->udev);\
97 #define PACK_OP_EXPORT_REPLY(pack, reply) do {\
118 #define PACK_OP_UNEXPORT_REPLY(pack, reply) do {\
159 #define PACK_OP_DEVLIST_REPLY(pack, reply) do {\
160 (reply)->ndev = usbip_net_pack_uint32_t(pack, (reply)->ndev);\
/third_party/mesa3d/src/vulkan/device-select-layer/
H A Ddevice_select_x11.c40 xcb_dri3_open_reply_t *reply; in ds_dri3_open() local
47 reply = xcb_dri3_open_reply(conn, cookie, NULL); in ds_dri3_open()
48 if (!reply) in ds_dri3_open()
51 if (reply->nfd != 1) { in ds_dri3_open()
52 free(reply); in ds_dri3_open()
56 fd = xcb_dri3_open_reply_fds(conn, reply)[0]; in ds_dri3_open()
57 free(reply); in ds_dri3_open()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/
H A Dcm_request.cpp67 static int32_t CmReadRequestReply(MessageParcel &reply, struct CmBlob *outBlob) in CmReadRequestReply() argument
69 int32_t ret = reply.ReadInt32(); in CmReadRequestReply()
75 size_t outLen = reply.ReadUint32(); in CmReadRequestReply()
86 const uint8_t *outData = reply.ReadBuffer(outLen); in CmReadRequestReply()
119 MessageParcel reply; in SendRequest() local
131 int error = cmProxy->SendRequest(static_cast<uint32_t>(type), data, reply, option); in SendRequest()
136 return CmReadRequestReply(reply, outBlob); in SendRequest()
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_msg.c214 * @reply: Pointer to buffer holding reply.
215 * @reply_len: Length of the reply.
220 static unsigned long vmw_port_hb_in(struct rpc_channel *channel, char *reply, in vmw_port_hb_in() argument
231 di = (uintptr_t) reply; in vmw_port_hb_in()
260 memcpy(reply, &ebx, bytes); in vmw_port_hb_in()
262 reply += bytes; in vmw_port_hb_in()
333 char *reply; in vmw_recv_msg() local
355 DRM_ERROR("Failed to get reply size for host message.\n"); in vmw_recv_msg()
359 /* No reply availabl in vmw_recv_msg()
439 char *msg, *reply = NULL; vmw_host_get_guestinfo() local
600 char *reply = NULL; vmw_msg_ioctl() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c109 DBusMessage *reply = NULL; in wpas_dbus_handler_p2p_find() local
173 reply = wpas_dbus_error_no_p2p_mgmt_iface(message); in wpas_dbus_handler_p2p_find()
179 reply = wpas_dbus_error_unknown_error( in wpas_dbus_handler_p2p_find()
183 return reply; in wpas_dbus_handler_p2p_find()
188 reply = wpas_dbus_error_invalid_args(message, entry.key); in wpas_dbus_handler_p2p_find()
191 return reply; in wpas_dbus_handler_p2p_find()
352 DBusMessage *reply = NULL; in wpas_dbus_handler_p2p_group_add() local
391 reply = wpas_dbus_error_no_p2p_mgmt_iface(message); in wpas_dbus_handler_p2p_group_add()
409 reply = in wpas_dbus_handler_p2p_group_add()
417 reply in wpas_dbus_handler_p2p_group_add()
492 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_remove_client() local
549 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_flush() local
569 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_connect() local
737 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_invite() local
2129 DBusMessage *reply = NULL; wpas_dbus_handler_add_persistent_group() local
2215 DBusMessage *reply = NULL; wpas_dbus_handler_remove_persistent_group() local
2665 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_add_service() local
2750 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_delete_service() local
2838 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_service_sd_req() local
2932 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_service_sd_res() local
[all...]
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_x11.c116 xcb_get_geometry_reply_t *reply; in x11_get_drawable_info() local
121 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error); in x11_get_drawable_info()
122 if (reply == NULL) in x11_get_drawable_info()
130 *x = reply->x; in x11_get_drawable_info()
131 *y = reply->y; in x11_get_drawable_info()
132 *w = reply->width; in x11_get_drawable_info()
133 *h = reply->height; in x11_get_drawable_info()
136 free(reply); in x11_get_drawable_info()
204 xcb_get_image_reply_t *reply; in swrastGetImage() local
209 reply in swrastGetImage()
277 xcb_get_geometry_reply_t *reply; dri2_x11_create_surface() local
532 xcb_dri2_get_buffers_reply_t *reply; dri2_x11_get_buffers() local
569 xcb_dri2_get_buffers_with_format_reply_t *reply; dri2_x11_get_buffers_with_format() local
916 xcb_dri2_swap_buffers_reply_t *reply; dri2_x11_swap_buffers_msc() local
1181 xcb_dri2_get_msc_reply_t *reply; dri2_x11_get_sync_values() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/linux/xcb/
H A DWindowSurfaceVkXcb.cpp43 xcb_get_geometry_reply_t *reply = xcb_get_geometry_reply(mXcbConnection, cookie, &error); in getCurrentWindowSize() local
49 ASSERT(reply); in getCurrentWindowSize()
50 *extentsOut = gl::Extents(reply->width, reply->height, 1); in getCurrentWindowSize()
51 free(reply); in getCurrentWindowSize()
/kernel/linux/linux-6.6/sound/soc/sof/
H A Ddebug.c223 struct sof_ipc_dbg_mem_usage *reply; in memory_info_update() local
228 reply = kmalloc(SOF_IPC_MSG_MAX_SIZE, GFP_KERNEL); in memory_info_update()
229 if (!reply) in memory_info_update()
238 ret = sof_ipc_tx_message(sdev->ipc, &msg, msg.size, reply, SOF_IPC_MSG_MAX_SIZE); in memory_info_update()
241 if (ret < 0 || reply->rhdr.error < 0) { in memory_info_update()
242 ret = min(ret, reply->rhdr.error); in memory_info_update()
247 if (struct_size(reply, elems, reply->num_elems) != reply->rhdr.hdr.size) { in memory_info_update()
249 reply in memory_info_update()
[all...]
/kernel/linux/linux-5.10/drivers/media/firewire/
H A Dfiredtv-ci.c75 struct ca_msg *reply = arg; in fdtv_ca_app_info() local
77 return avc_ca_app_info(fdtv, reply->msg, &reply->length); in fdtv_ca_app_info()
82 struct ca_msg *reply = arg; in fdtv_ca_info() local
84 return avc_ca_info(fdtv, reply->msg, &reply->length); in fdtv_ca_info()
89 struct ca_msg *reply = arg; in fdtv_ca_get_mmi() local
91 return avc_ca_get_mmi(fdtv, reply->msg, &reply->length); in fdtv_ca_get_mmi()
/kernel/linux/linux-6.6/drivers/media/firewire/
H A Dfiredtv-ci.c75 struct ca_msg *reply = arg; in fdtv_ca_app_info() local
77 return avc_ca_app_info(fdtv, reply->msg, &reply->length); in fdtv_ca_app_info()
82 struct ca_msg *reply = arg; in fdtv_ca_info() local
84 return avc_ca_info(fdtv, reply->msg, &reply->length); in fdtv_ca_info()
89 struct ca_msg *reply = arg; in fdtv_ca_get_mmi() local
91 return avc_ca_get_mmi(fdtv, reply->msg, &reply->length); in fdtv_ca_get_mmi()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c85 DBusMessage *reply = NULL; in wpas_dbus_handler_p2p_find() local
151 reply = wpas_dbus_error_unknown_error( in wpas_dbus_handler_p2p_find()
155 return reply; in wpas_dbus_handler_p2p_find()
161 reply = wpas_dbus_error_invalid_args(message, entry.key); in wpas_dbus_handler_p2p_find()
162 return reply; in wpas_dbus_handler_p2p_find()
315 DBusMessage *reply = NULL; in wpas_dbus_handler_p2p_group_add() local
368 reply = in wpas_dbus_handler_p2p_group_add()
376 reply = wpas_dbus_error_invalid_args( in wpas_dbus_handler_p2p_group_add()
388 reply = wpas_dbus_error_unknown_error( in wpas_dbus_handler_p2p_group_add()
400 return reply; in wpas_dbus_handler_p2p_group_add()
444 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_remove_client() local
501 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_flush() local
521 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_connect() local
689 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_invite() local
2071 DBusMessage *reply = NULL; wpas_dbus_handler_add_persistent_group() local
2152 DBusMessage *reply = NULL; wpas_dbus_handler_remove_persistent_group() local
2596 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_add_service() local
2681 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_delete_service() local
2769 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_service_sd_req() local
2863 DBusMessage *reply = NULL; wpas_dbus_handler_p2p_service_sd_res() local
[all...]
/test/xts/hats/hdf/manager/managerHdiTest/
H A Dservice_manager_hdi_c_test.cpp110 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); in HWTEST_F() local
112 ASSERT_TRUE(reply != nullptr); in HWTEST_F()
119 int status = sampleService->dispatcher->Dispatch(sampleService, SAMPLE_SERVICE_PING, data, reply); in HWTEST_F()
123 HdfSbufRecycle(reply); in HWTEST_F()
129 struct HdfRemoteService *service, int code, struct HdfSBuf *data, struct HdfSBuf *reply) in ServiceManagerTestCallbackDispatch()
160 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); in HWTEST_F() local
162 ASSERT_TRUE(reply != nullptr); in HWTEST_F()
169 int status = sampleService->dispatcher->Dispatch(sampleService, SAMPLE_SERVICE_CALLBACK, data, reply); in HWTEST_F()
174 HdfSbufRecycle(reply); in HWTEST_F()
195 struct HdfSBuf *reply in HWTEST_F() local
128 ServiceManagerTestCallbackDispatch( struct HdfRemoteService *service, int code, struct HdfSBuf *data, struct HdfSBuf *reply) ServiceManagerTestCallbackDispatch() argument
234 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); HWTEST_F() local
277 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); HWTEST_F() local
332 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); HWTEST_F() local
522 struct HdfSBuf *reply = HdfSbufTypedObtain(SBUF_IPC); HWTEST_F() local
[all...]
/kernel/linux/linux-5.10/drivers/s390/net/
H A Dlcs.c757 lcs_get_reply(struct lcs_reply *reply) in lcs_get_reply() argument
759 refcount_inc(&reply->refcnt); in lcs_get_reply()
763 lcs_put_reply(struct lcs_reply *reply) in lcs_put_reply() argument
765 if (refcount_dec_and_test(&reply->refcnt)) in lcs_put_reply()
766 kfree(reply); in lcs_put_reply()
772 struct lcs_reply *reply; in lcs_alloc_reply() local
776 reply = kzalloc(sizeof(struct lcs_reply), GFP_ATOMIC); in lcs_alloc_reply()
777 if (!reply) in lcs_alloc_reply()
779 refcount_set(&reply->refcnt, 1); in lcs_alloc_reply()
780 reply in lcs_alloc_reply()
795 struct lcs_reply *reply; lcs_notify_lancmd_waiters() local
822 struct lcs_reply *reply = from_timer(reply, t, timer); lcs_lancmd_timeout() local
848 struct lcs_reply *reply; lcs_send_lancmd() local
[all...]
/kernel/linux/linux-6.6/drivers/s390/net/
H A Dlcs.c753 lcs_get_reply(struct lcs_reply *reply) in lcs_get_reply() argument
755 refcount_inc(&reply->refcnt); in lcs_get_reply()
759 lcs_put_reply(struct lcs_reply *reply) in lcs_put_reply() argument
761 if (refcount_dec_and_test(&reply->refcnt)) in lcs_put_reply()
762 kfree(reply); in lcs_put_reply()
768 struct lcs_reply *reply; in lcs_alloc_reply() local
772 reply = kzalloc(sizeof(struct lcs_reply), GFP_ATOMIC); in lcs_alloc_reply()
773 if (!reply) in lcs_alloc_reply()
775 refcount_set(&reply->refcnt, 1); in lcs_alloc_reply()
776 reply in lcs_alloc_reply()
791 struct lcs_reply *reply; lcs_notify_lancmd_waiters() local
818 struct lcs_reply *reply = from_timer(reply, t, timer); lcs_lancmd_timeout() local
844 struct lcs_reply *reply; lcs_send_lancmd() local
[all...]
/kernel/linux/linux-5.10/net/atm/
H A Dsignaling.c46 msg->reply = -EOPNOTSUPP; in modify_qos()
49 msg->reply = vcc->dev->ops->change_qos(vcc, &msg->qos, in modify_qos()
50 msg->reply); in modify_qos()
51 if (!msg->reply) in modify_qos()
78 sk->sk_err = -msg->reply; in sigd_send()
99 sk->sk_err = -msg->reply; in sigd_send()
121 vcc_release_async(vcc, msg->reply); in sigd_send()
128 sk->sk_err_soft = -msg->reply; in sigd_send()
145 int reply) in sigd_enq2()
158 msg->reply in sigd_enq2()
142 sigd_enq2(struct atm_vcc *vcc, enum atmsvc_msg_type type, struct atm_vcc *listen_vcc, const struct sockaddr_atmpvc *pvc, const struct sockaddr_atmsvc *svc, const struct atm_qos *qos, int reply) sigd_enq2() argument
[all...]
/kernel/linux/linux-6.6/drivers/thermal/tegra/
H A Dtegra-bpmp-thermal.c37 union mrq_thermal_bpmp_to_host_response reply; in __tegra_bpmp_thermal_get_temp() local
49 msg.rx.data = &reply; in __tegra_bpmp_thermal_get_temp()
50 msg.rx.size = sizeof(reply); in __tegra_bpmp_thermal_get_temp()
60 *out_temp = reply.get_temp.temp; in __tegra_bpmp_thermal_get_temp()
145 union mrq_thermal_bpmp_to_host_response reply; in tegra_bpmp_thermal_get_num_zones() local
156 msg.rx.data = &reply; in tegra_bpmp_thermal_get_num_zones()
157 msg.rx.size = sizeof(reply); in tegra_bpmp_thermal_get_num_zones()
165 *num_zones = reply.get_num_zones.num; in tegra_bpmp_thermal_get_num_zones()
173 union mrq_thermal_bpmp_to_host_response reply; in tegra_bpmp_thermal_trips_supported() local
185 msg.rx.data = &reply; in tegra_bpmp_thermal_trips_supported()
[all...]
/kernel/linux/linux-6.6/net/atm/
H A Dsignaling.c46 msg->reply = -EOPNOTSUPP; in modify_qos()
49 msg->reply = vcc->dev->ops->change_qos(vcc, &msg->qos, in modify_qos()
50 msg->reply); in modify_qos()
51 if (!msg->reply) in modify_qos()
78 sk->sk_err = -msg->reply; in sigd_send()
99 sk->sk_err = -msg->reply; in sigd_send()
121 vcc_release_async(vcc, msg->reply); in sigd_send()
128 WRITE_ONCE(sk->sk_err_soft, -msg->reply); in sigd_send()
145 int reply) in sigd_enq2()
158 msg->reply in sigd_enq2()
142 sigd_enq2(struct atm_vcc *vcc, enum atmsvc_msg_type type, struct atm_vcc *listen_vcc, const struct sockaddr_atmpvc *pvc, const struct sockaddr_atmsvc *svc, const struct atm_qos *qos, int reply) sigd_enq2() argument
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-console-kit.c64 DBusMessage *m = NULL, *reply = NULL; in add_session() local
81 if (!(reply = dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(u->connection), m, -1, &error))) { in add_session()
87 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_UINT32, &uid, DBUS_TYPE_INVALID)) { in add_session()
90 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INT32, &uid, DBUS_TYPE_INVALID)) { in add_session()
139 if (reply) in add_session()
140 dbus_message_unref(reply); in add_session()
210 DBusMessage *m = NULL, *reply = NULL; in get_session_list() local
230 if (!(reply = dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(u->connection), m, -1, &error))) { in get_session_list()
235 dbus_message_iter_init(reply, &iter); in get_session_list()
267 if (reply) in get_session_list()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_upnp_web.c424 struct wpabuf **reply, const char **replyname) in web_process_get_device_info()
458 *reply = wps_get_msg(peer->wps, &op_code); in web_process_get_device_info()
459 if (*reply == NULL) { in web_process_get_device_info()
464 *reply = NULL; in web_process_get_device_info()
465 if (*reply == NULL) { in web_process_get_device_info()
490 struct wpabuf **reply, const char **replyname) in web_process_put_message()
559 *reply = NULL; in web_process_put_message()
563 *reply = wps_get_msg(peer->wps, &op_code); in web_process_put_message()
566 if (*reply == NULL) in web_process_put_message()
575 struct wpabuf **reply, cons in web_process_put_wlan_response()
423 web_process_get_device_info(struct upnp_wps_device_sm *sm, struct wpabuf **reply, const char **replyname) web_process_get_device_info() argument
489 web_process_put_message(struct upnp_wps_device_sm *sm, char *data, struct wpabuf **reply, const char **replyname) web_process_put_message() argument
574 web_process_put_wlan_response(struct upnp_wps_device_sm *sm, char *data, struct wpabuf **reply, const char **replyname) web_process_put_wlan_response() argument
699 web_process_set_selected_registrar(struct upnp_wps_device_sm *sm, struct sockaddr_in *cli, char *data, struct wpabuf **reply, const char **replyname) web_process_set_selected_registrar() argument
755 web_connection_send_reply(struct http_request *req, enum http_reply_code ret, const char *action, int action_len, const struct wpabuf *reply, const char *replyname) web_connection_send_reply() argument
928 struct wpabuf *reply = NULL; /* data for the reply */ web_connection_parse_post() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_upnp_web.c424 struct wpabuf **reply, const char **replyname) in web_process_get_device_info()
458 *reply = wps_get_msg(peer->wps, &op_code); in web_process_get_device_info()
459 if (*reply == NULL) { in web_process_get_device_info()
464 *reply = NULL; in web_process_get_device_info()
465 if (*reply == NULL) { in web_process_get_device_info()
490 struct wpabuf **reply, const char **replyname) in web_process_put_message()
559 *reply = NULL; in web_process_put_message()
563 *reply = wps_get_msg(peer->wps, &op_code); in web_process_put_message()
566 if (*reply == NULL) in web_process_put_message()
575 struct wpabuf **reply, cons in web_process_put_wlan_response()
423 web_process_get_device_info(struct upnp_wps_device_sm *sm, struct wpabuf **reply, const char **replyname) web_process_get_device_info() argument
489 web_process_put_message(struct upnp_wps_device_sm *sm, char *data, struct wpabuf **reply, const char **replyname) web_process_put_message() argument
574 web_process_put_wlan_response(struct upnp_wps_device_sm *sm, char *data, struct wpabuf **reply, const char **replyname) web_process_put_wlan_response() argument
699 web_process_set_selected_registrar(struct upnp_wps_device_sm *sm, struct sockaddr_in *cli, char *data, struct wpabuf **reply, const char **replyname) web_process_set_selected_registrar() argument
755 web_connection_send_reply(struct http_request *req, enum http_reply_code ret, const char *action, int action_len, const struct wpabuf *reply, const char *replyname) web_connection_send_reply() argument
928 struct wpabuf *reply = NULL; /* data for the reply */ web_connection_parse_post() local
[all...]
/kernel/linux/linux-6.6/net/netfilter/
H A Dnf_conntrack_sane.c71 struct sane_reply_net_start *reply; in help() local
109 /* We're interested in the next reply */ in help()
116 /* Is it a reply to an uninteresting command? */ in help()
120 /* It's a reply to SANE_NET_START. */ in help()
124 pr_debug("NET_START reply too short\n"); in help()
130 reply = skb_header_pointer(skb, dataoff, datalen, &buf.repl); in help()
131 if (!reply) in help()
134 if (reply->status != htonl(SANE_STATUS_SUCCESS)) { in help()
137 ntohl(reply->status)); in help()
141 /* Invalid saned reply in help()
[all...]
/test/testfwk/arkxtest/uitest/test/
H A Dfrontend_api_handler_test.cpp80 auto reply = ApiReplyInfo(); in TEST_F() local
81 FrontendApiServer::Get().Call(call, reply); in TEST_F()
82 ASSERT_EQ(ERR_INTERNAL, reply.exception_.code_); in TEST_F()
83 ASSERT_TRUE(reply.exception_.message_.find("No handler found") != string::npos); in TEST_F()
99 auto reply = ApiReplyInfo(); in TEST_F() local
100 server.Call(call, reply); in TEST_F()
101 ASSERT_EQ(NO_ERROR, reply.exception_.code_); in TEST_F()
105 server.Call(call, reply); in TEST_F()
106 ASSERT_EQ(ERR_INTERNAL, reply.exception_.code_) << "The handler should be unavailable after been removed"; in TEST_F()
119 auto reply in TEST_F() local
137 auto reply = ApiReplyInfo(); TEST_F() local
152 auto reply = ApiReplyInfo(); TEST_F() local
174 auto reply = ApiReplyInfo(); TEST_F() local
[all...]
/kernel/linux/linux-5.10/drivers/macintosh/
H A Dvia-pmu.c17 * - Cleanup atomically disabling reply to PMU events after
626 pmu_version = req.reply[0]; in init_pmu()
634 if (req.reply[1] & PMU_PWR_WAKEUP_AC_INSERT) in init_pmu()
668 req.reply[0], PMU_PWR_WAKEUP_AC_INSERT); in pmu_set_server_mode()
672 req.reply[0], PMU_PWR_WAKEUP_AC_INSERT); in pmu_set_server_mode()
708 if (req->reply[0] & 0x01) in done_battery_state_ohare()
725 if (req->reply[0] & 0x04) { in done_battery_state_ohare()
727 if (req->reply[0] & 0x02) in done_battery_state_ohare()
729 vb = (req->reply[1] << 8) | req->reply[ in done_battery_state_ohare()
[all...]
/kernel/linux/linux-6.6/drivers/macintosh/
H A Dvia-pmu.c17 * - Cleanup atomically disabling reply to PMU events after
615 pmu_version = req.reply[0]; in init_pmu()
623 if (req.reply[1] & PMU_PWR_WAKEUP_AC_INSERT) in init_pmu()
657 req.reply[0], PMU_PWR_WAKEUP_AC_INSERT); in pmu_set_server_mode()
661 req.reply[0], PMU_PWR_WAKEUP_AC_INSERT); in pmu_set_server_mode()
697 if (req->reply[0] & 0x01) in done_battery_state_ohare()
714 if (req->reply[0] & 0x04) { in done_battery_state_ohare()
716 if (req->reply[0] & 0x02) in done_battery_state_ohare()
718 vb = (req->reply[1] << 8) | req->reply[ in done_battery_state_ohare()
[all...]

Completed in 36 milliseconds

12345678910>>...32