Home
last modified time | relevance | path

Searched refs:new_msg (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/auxdisplay/
H A Dimg-ascii-lcd.c271 char *new_msg; in img_ascii_lcd_display() local
293 new_msg = devm_kmalloc(&ctx->pdev->dev, count + 1, GFP_KERNEL); in img_ascii_lcd_display()
294 if (!new_msg) in img_ascii_lcd_display()
297 memcpy(new_msg, msg, count); in img_ascii_lcd_display()
298 new_msg[count] = 0; in img_ascii_lcd_display()
303 ctx->message = new_msg; in img_ascii_lcd_display()
/OK3568_Linux_fs/kernel/drivers/atm/
H A Datmtcp.c49 struct atmtcp_control *new_msg; in atmtcp_send_control() local
64 new_msg = skb_put(skb, sizeof(*new_msg)); in atmtcp_send_control()
65 *new_msg = *msg; in atmtcp_send_control()
66 new_msg->hdr.length = ATMTCP_HDR_MAGIC; in atmtcp_send_control()
67 new_msg->type = type; in atmtcp_send_control()
68 memset(&new_msg->vcc,0,sizeof(atm_kptr_t)); in atmtcp_send_control()
69 *(struct atm_vcc **) &new_msg->vcc = vcc; in atmtcp_send_control()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/
H A Dphl_msg_hub.c70 _os_list* new_msg = NULL; in pop_front_idle_msg() local
73 if(pq_pop(d, &hub->idle_msg_q, &new_msg, _first, _bh)) { in pop_front_idle_msg()
74 (*msg) = (struct phl_msg_ex*)new_msg; in pop_front_idle_msg()
98 _os_list* new_msg = NULL; in pop_front_wait_msg() local
101 if(pq_pop(d, &hub->wait_msg_q, &new_msg, _first, _bh)) { in pop_front_wait_msg()
102 (*msg) = (struct phl_msg_ex*)new_msg; in pop_front_wait_msg()
H A Dphl_cmd_dispatcher.c289 _os_list *new_msg = NULL; in pop_front_idle_msg() local
292 if (pq_pop(d, &(obj->msg_idle_q), &new_msg, _first, _bh)) { in pop_front_idle_msg()
293 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_idle_msg()
340 _os_list *new_msg = NULL; in pop_front_wait_msg() local
343 if (pq_pop(d, &(obj->msg_wait_q), &new_msg, _first, _bh)) { in pop_front_wait_msg()
344 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_wait_msg()
391 _os_list *new_msg = NULL; in pop_front_pending_msg() local
394 if (pq_pop(d, &(obj->msg_pend_q), &new_msg, _first, _bh)) { in pop_front_pending_msg()
395 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_pending_msg()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/
H A Dphl_msg_hub.c70 _os_list* new_msg = NULL; in pop_front_idle_msg() local
73 if(pq_pop(d, &hub->idle_msg_q, &new_msg, _first, _bh)) { in pop_front_idle_msg()
74 (*msg) = (struct phl_msg_ex*)new_msg; in pop_front_idle_msg()
98 _os_list* new_msg = NULL; in pop_front_wait_msg() local
101 if(pq_pop(d, &hub->wait_msg_q, &new_msg, _first, _bh)) { in pop_front_wait_msg()
102 (*msg) = (struct phl_msg_ex*)new_msg; in pop_front_wait_msg()
H A Dphl_cmd_dispatcher.c289 _os_list *new_msg = NULL; in pop_front_idle_msg() local
292 if (pq_pop(d, &(obj->msg_idle_q), &new_msg, _first, _bh)) { in pop_front_idle_msg()
293 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_idle_msg()
340 _os_list *new_msg = NULL; in pop_front_wait_msg() local
343 if (pq_pop(d, &(obj->msg_wait_q), &new_msg, _first, _bh)) { in pop_front_wait_msg()
344 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_wait_msg()
391 _os_list *new_msg = NULL; in pop_front_pending_msg() local
394 if (pq_pop(d, &(obj->msg_pend_q), &new_msg, _first, _bh)) { in pop_front_pending_msg()
395 (*msg) = (struct phl_dispr_msg_ex *)new_msg; in pop_front_pending_msg()
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dqa.py200 def add_message(messages, section, new_msg): argument
202 messages[section] = new_msg
204 messages[section] = messages[section] + "\n" + new_msg