| /components/lwp/arch/x86/i386/ |
| A D | lwp_arch.c | 143 frame->ds = frame->es = USER_DATA_SEL; in lwp_user_stack_init() 146 frame->gs = USER_TLS_SEL; in lwp_user_stack_init() 149 frame->edi = frame->esi = \ in lwp_user_stack_init() 150 frame->ebp = frame->esp_dummy = 0; in lwp_user_stack_init() 151 frame->eax = frame->ebx = \ in lwp_user_stack_init() 152 frame->ecx = frame->edx = 0; in lwp_user_stack_init() 154 frame->error_code = 0; in lwp_user_stack_init() 155 frame->vec_no = 0; in lwp_user_stack_init() 311 … int signal = lwp_signal_backup((void *) frame->esp, (void *) frame->eip, (void *) frame->eflags); in lwp_try_do_signal() 324 memcpy(&sig_frame->frame, frame, sizeof(rt_hw_stack_frame_t)); in lwp_try_do_signal() [all …]
|
| A D | lwp_arch.h | 36 void lwp_signal_do_return(rt_hw_stack_frame_t *frame);
|
| /components/utilities/rt-link/src/ |
| A D | rtlink.c | 86 if (frame == RT_NULL) in rt_link_frame_init() 105 frame->crc = 0; in rt_link_frame_init() 107 frame->data_len = 0; in rt_link_frame_init() 108 frame->index = 0; in rt_link_frame_init() 109 frame->total = 0; in rt_link_frame_init() 193 if (frame) in rt_link_service_send_finish() 196 buffer = frame->real_data - (frame->index * RT_LINK_MAX_DATA_LENGTH); in rt_link_service_send_finish() 229 frame->head.length = frame->data_len; in frame_send() 239 rt_memcpy(data, frame->real_data, frame->data_len); in frame_send() 248 …e send seq(%d) len(%d) attr:(%d), crc:(0x%08x).", frame->head.sequence, length, frame->attribute, … in frame_send() [all …]
|
| /components/lwp/arch/arm/cortex-a/ |
| A D | lwp_arch.c | 129 struct signal_regs frame; member 141 ip = new_sp->frame.ip; in arch_signal_ucontext_restore() 143 new_sp->frame.ip = new_sp->frame.lr; in arch_signal_ucontext_restore() 145 new_sp->frame.lr = ip; in arch_signal_ucontext_restore() 153 return (void *)&new_sp->frame; in arch_signal_ucontext_restore() 172 …lwp_memcpy(&new_sp->frame.r0_to_r12, exp_frame, sizeof(new_sp->frame.r0_to_r12) + sizeof(rt_base_t… in arch_signal_ucontext_save() 173 new_sp->frame.lr = lr; in arch_signal_ucontext_save() 176 new_sp->frame.spsr = spsr; in arch_signal_ucontext_save()
|
| /components/lwp/arch/aarch64/cortex-a/ |
| A D | lwp_arch.c | 134 struct rt_hw_exp_stack frame; member 141 return &uctx->frame; in arch_signal_ucontext_get_frame() 183 arch_signal_check_erestart(&new_sp->frame, (void *)kernel_sp); in arch_signal_post_action() 204 return (char *)&new_sp->frame + sizeof(struct rt_hw_exp_stack); in arch_signal_ucontext_restore() 223 lwp_memcpy(&new_sp->frame, exp_frame, sizeof(*exp_frame)); in arch_signal_ucontext_save() 245 struct rt_hw_backtrace_frame frame; in arch_backtrace_uthread() local 254 frame.pc = stack->pc; in arch_backtrace_uthread() 255 frame.fp = stack->x29; in arch_backtrace_uthread() 256 lwp_backtrace_frame(thread, &frame); in arch_backtrace_uthread()
|
| /components/lwp/arch/risc-v/rv64/ |
| A D | lwp_arch.c | 88 …struct rt_hw_stack_frame *frame = (struct rt_hw_stack_frame *)(stack_top - sizeof(struct rt_hw_sta… in arch_get_user_sp() local 90 return (void *)frame->user_sp_exc_stack; in arch_get_user_sp() 258 struct rt_hw_stack_frame frame; member 276 return (void *)&new_sp->frame; in arch_signal_ucontext_restore() 294 lwp_memcpy(&new_sp->frame, exp_frame, sizeof(*exp_frame)); in arch_signal_ucontext_save() 339 struct rt_hw_backtrace_frame frame; in arch_backtrace_uthread() local 348 frame.pc = stack->epc; in arch_backtrace_uthread() 349 frame.fp = stack->s0_fp; in arch_backtrace_uthread() 350 lwp_backtrace_frame(thread, &frame); in arch_backtrace_uthread()
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | demand.c | 61 char *frame; variable 92 frame = malloc(framemax); in demand_conf() 93 if (frame == NULL) in demand_conf() 246 if (loop_frame((unsigned char *)frame, framelen)) 268 frame[framelen++] = c; 285 loop_frame(frame, len) in loop_frame() argument 286 unsigned char *frame; in loop_frame() 294 if ((PPP_PROTOCOL(frame) & 0x8000) != 0) 296 if (!active_packet(frame, len)) 303 memcpy(pkt->data, frame, len);
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | demand.c | 61 char *frame; variable 92 frame = malloc(framemax); in demand_conf() 93 if (frame == NULL) in demand_conf() 246 if (loop_frame((unsigned char *)frame, framelen)) 268 frame[framelen++] = c; 285 loop_frame(frame, len) in loop_frame() argument 286 unsigned char *frame; in loop_frame() 294 if ((PPP_PROTOCOL(frame) & 0x8000) != 0) 296 if (!active_packet(frame, len)) 303 memcpy(pkt->data, frame, len);
|
| /components/drivers/wlan/ |
| A D | dev_wlan_lwip.c | 378 rt_uint8_t *frame; in rt_wlan_lwip_protocol_send() local 383 frame = (rt_uint8_t *)p->payload; in rt_wlan_lwip_protocol_send() 384 rt_wlan_prot_transfer_dev(wlan, frame, p->tot_len); in rt_wlan_lwip_protocol_send() 388 frame = rt_malloc(p->tot_len); in rt_wlan_lwip_protocol_send() 389 if (frame == RT_NULL) in rt_wlan_lwip_protocol_send() 395 pbuf_copy_partial(p, frame, p->tot_len, 0); in rt_wlan_lwip_protocol_send() 397 rt_wlan_prot_transfer_dev(wlan, frame, p->tot_len); in rt_wlan_lwip_protocol_send() 399 rt_free(frame); in rt_wlan_lwip_protocol_send()
|
| /components/drivers/usb/cherryusb/class/video/ |
| A D | usbh_video.c | 172 if ((wWidth == video_class->format[i].frame[j].wWidth) && in usbh_video_open() 173 (wHeight == video_class->format[i].frame[j].wHeight)) { in usbh_video_open() 354 video_class->format[i].frame[j].wWidth, in usbh_video_list_info() 355 video_class->format[i].frame[j].wHeight); in usbh_video_list_info() 439 …video_class->format[format_index - 1].frame[frame_index - 1].wWidth = ((struct video_cs_if_vs_fram… in usbh_video_ctrl_connect() 440 …video_class->format[format_index - 1].frame[frame_index - 1].wHeight = ((struct video_cs_if_vs_fra… in usbh_video_ctrl_connect() 445 …video_class->format[format_index - 1].frame[frame_index - 1].wWidth = ((struct video_cs_if_vs_fram… in usbh_video_ctrl_connect() 446 …video_class->format[format_index - 1].frame[frame_index - 1].wHeight = ((struct video_cs_if_vs_fra… in usbh_video_ctrl_connect()
|
| A D | usbh_video.h | 20 struct usbh_video_resolution frame[12]; member 33 struct usbh_videoframe *frame; member
|
| /components/lwp/ |
| A D | lwp.c | 573 rt_err_t lwp_backtrace_frame(rt_thread_t uthread, struct rt_hw_backtrace_frame *frame) in lwp_backtrace_frame() argument 596 rt_kprintf(" 0x%lx", frame->pc); in lwp_backtrace_frame() 597 if (rt_hw_backtrace_frame_unwind(uthread, frame)) in lwp_backtrace_frame()
|
| A D | lwp.h | 424 rt_err_t lwp_backtrace_frame(rt_thread_t uthread, struct rt_hw_backtrace_frame *frame);
|
| /components/mm/ |
| A D | mm_page.c | 1051 rt_base_t frame = (rt_base_t)rt_page_page2addr(iter); in _invalid_uninstalled_shadow() local 1052 struct installed_page_reg *page_reg = _find_page_region(frame); in _invalid_uninstalled_shadow()
|
| /components/drivers/usb/cherryusb/port/dwc2/ |
| A D | usb_hc_dwc2.c | 429 uint16_t frame = usbh_get_frame_number(bus); in dwc2_get_full_frame_num() local 432 return ((frame & 0x3FFF) >> 3); in dwc2_get_full_frame_num()
|
| /components/drivers/usb/cherryusb/port/ehci/ |
| A D | usb_hc_ehci.c | 879 #error Unsupported frame size list size in usb_hc_init()
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 1463 # to set the initial width (in pixels) of the frame in which the tree is shown.
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 1474 # to set the initial width (in pixels) of the frame in which the tree is shown.
|
| A D | lwip.Doxyfile.cmake.in | 1474 # to set the initial width (in pixels) of the frame in which the tree is shown.
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 961 * opt.h, etharp.h/.c: task #9033: Support IEEE 802.1q tagged frame (VLAN),
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 1917 * opt.h, etharp.h/.c: task #9033: Support IEEE 802.1q tagged frame (VLAN),
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 2170 * opt.h, etharp.h/.c: task #9033: Support IEEE 802.1q tagged frame (VLAN),
|