/kernel/linux/linux-6.6/arch/arm/lib/ |
H A D | backtrace.S | 14 @ fp is 0 or stack frame 16 #define frame r4 define 30 movs frame, r0 @ if frame pointer is zero 46 * Stack frame layout: 51 * frame => saved pc 60 for_each_frame: tst frame, mask @ Check for address exceptions 63 1001: ldr sv_pc, [frame, #0] @ get saved pc 64 1002: ldr sv_fp, [frame, #-12] @ get saved fp 75 ldr r1, [frame, # [all...] |
/kernel/liteos_a/kernel/extended/trace/ |
H A D | trace_offline.c | 111 VOID OsTraceWriteOrSendEvent(const TraceEventFrame *frame) in OsTraceWriteOrSendEvent() argument 118 (VOID)memcpy_s(&g_traceRecoder.ctrl.frameBuf[index], sizeof(TraceEventFrame), frame, sizeof(TraceEventFrame)); in OsTraceWriteOrSendEvent() 181 TraceEventFrame *frame = &g_traceRecoder.ctrl.frameBuf[0]; in OsTraceInfoEventData() local 183 for (i = 0; i < g_traceRecoder.ctrl.maxRecordCount; i++, frame++) { in OsTraceInfoEventData() 184 PRINTK("%-7u 0x%-15llx 0x%-12x 0x%-7x 0x%-7x 0x%-11x ", i, frame->curTime, frame->eventType, in OsTraceInfoEventData() 185 frame->curPid, frame->curTask, frame->identity); in OsTraceInfoEventData() 187 UINT32 taskLockCnt = frame in OsTraceInfoEventData() 232 TraceEventFrame *frame = NULL; OsTraceSendInfo() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | bintext.c | 44 AVFrame *frame; member 118 memmove(s->frame->data[0], s->frame->data[0] + s->font_height*s->frame->linesize[0], in hscroll() 119 (avctx->height - s->font_height)*s->frame->linesize[0]); in hscroll() 120 memset(s->frame->data[0] + (avctx->height - s->font_height)*s->frame->linesize[0], in hscroll() 121 DEFAULT_BG_COLOR, s->font_height * s->frame->linesize[0]); in hscroll() 133 ff_draw_pc_font(s->frame->data[0] + s->y * s->frame in draw_char() 143 decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) decode_frame() argument [all...] |
H A D | v4l2_buffers.c | 299 static int v4l2_buffer_buf_to_swframe(AVFrame *frame, V4L2Buffer *avbuf) in v4l2_buffer_buf_to_swframe() argument 303 frame->format = avbuf->context->av_pix_fmt; in v4l2_buffer_buf_to_swframe() 306 ret = v4l2_buf_to_bufref(avbuf, i, &frame->buf[i]); in v4l2_buffer_buf_to_swframe() 310 frame->linesize[i] = avbuf->plane_info[i].bytesperline; in v4l2_buffer_buf_to_swframe() 311 frame->data[i] = frame->buf[i]->data; in v4l2_buffer_buf_to_swframe() 320 frame->linesize[1] = avbuf->plane_info[0].bytesperline; in v4l2_buffer_buf_to_swframe() 321 frame->data[1] = frame->buf[0]->data + avbuf->plane_info[0].bytesperline * avbuf->context->format.fmt.pix_mp.height; in v4l2_buffer_buf_to_swframe() 327 frame in v4l2_buffer_buf_to_swframe() 340 v4l2_buffer_swframe_to_buf(const AVFrame *frame, V4L2Buffer *out) v4l2_buffer_swframe_to_buf() argument 411 ff_v4l2_buffer_avframe_to_buf(const AVFrame *frame, V4L2Buffer *out) ff_v4l2_buffer_avframe_to_buf() argument 418 ff_v4l2_buffer_buf_to_avframe(AVFrame *frame, V4L2Buffer *avbuf) ff_v4l2_buffer_buf_to_avframe() argument [all...] |
H A D | evrcdec.c | 57 * EVRC-A unpacked data frame 62 uint8_t pitch_delay; ///< pitch delay for entire frame 63 uint8_t delay_diff; ///< delay difference for entire frame 67 uint8_t energy_gain; ///< frame energy gain index 79 EVRCAFrame frame; member 112 EVRCAFrame *frame = &e->frame; in unpack_frame() local 117 frame->lpc_flag = get_bits1(gb); in unpack_frame() 118 frame->lsp[0] = get_bits(gb, 6); in unpack_frame() 119 frame in unpack_frame() 744 evrc_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt) evrc_decode_frame() argument [all...] |
H A D | jvdec.c | 38 AVFrame *frame; member 54 s->frame = av_frame_alloc(); in decode_init() 55 if (!s->frame) in decode_init() 172 if ((ret = ff_reget_buffer(avctx, s->frame, 0)) < 0) in decode_frame() 183 s->frame->data[0] + j * s->frame->linesize[0] + i, in decode_frame() 184 s->frame->linesize[0], &s->bdsp); in decode_frame() 190 av_frame_unref(s->frame); in decode_frame() 191 if ((ret = ff_get_buffer(avctx, s->frame, AV_GET_BUFFER_FLAG_REF)) < 0) in decode_frame() 195 memset(s->frame in decode_frame() [all...] |
H A D | arbc.c | 41 static int fill_tile4(AVCodecContext *avctx, int color, AVFrame *frame) in fill_tile4() argument 66 AV_WB24(&frame->data[0][frame->linesize[0] * (h - j) + 3 * k], color); in fill_tile4() 77 int color, AVFrame *frame) in fill_tileX() 107 AV_WB24(&frame->data[0][frame->linesize[0] * (h - (j + m)) + 3 * (k + n)], color); in fill_tileX() 119 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument 138 if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) in decode_frame() 142 ret = av_frame_copy(frame, s->prev_frame); in decode_frame() 163 prev_pixels -= fill_tileX(avctx, 1024, 1024, fill, frame); in decode_frame() 76 fill_tileX(AVCodecContext *avctx, int tile_width, int tile_height, int color, AVFrame *frame) fill_tileX() argument [all...] |
H A D | qtrle.c | 46 AVFrame *frame; member 63 int row_inc = s->frame->linesize[0]; in qtrle_decode_1bpp() 65 uint8_t *rgb = s->frame->data[0]; in qtrle_decode_1bpp() 66 int pixel_limit = s->frame->linesize[0] * s->avctx->height; in qtrle_decode_1bpp() 69 * as 'go to next line' during the decoding of a frame but is 'go to first in qtrle_decode_1bpp() 149 int row_inc = s->frame->linesize[0]; in qtrle_decode_2n4bpp() 151 uint8_t *rgb = s->frame->data[0]; in qtrle_decode_2n4bpp() 152 int pixel_limit = s->frame->linesize[0] * s->avctx->height; in qtrle_decode_2n4bpp() 207 int row_inc = s->frame->linesize[0]; in qtrle_decode_8bpp() 209 uint8_t *rgb = s->frame in qtrle_decode_8bpp() [all...] |
/third_party/python/Lib/idlelib/ |
H A D | searchbase.py | 37 frame: container for all widgets in dialog. 40 row (of grid): 0 in create_widgets(), +1 in make_entry/frame(). 89 self.frame = Frame(top, padding="5px") 90 self.frame.grid(sticky="nwes") 95 self.frame.grid_columnconfigure(0, pad=2, weight=0) 96 self.frame.grid_columnconfigure(1, pad=2, minsize=100, weight=100) 109 label = Label(self.frame, text=label_text) 111 entry = Entry(self.frame, textvariable=var, exportselection=0) 121 '''Return (frame, label). 123 frame [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | nativetypes.py | 39 def visit_Output(self, node, frame): 43 if self.has_known_extends and frame.require_output_check: 63 # If we are inside a frame that requires output checking, we do so. 66 if frame.require_output_check: 80 const = child.as_const(frame.eval_ctx) 87 # the frame can't be volatile here, because otherwise the as_const 90 if frame.eval_ctx.autoescape: 109 if len(body) < 3 or frame.buffer is not None: 110 if frame.buffer is not None: 113 self.writeline('%s.append(' % frame [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Thread.cpp | 65 auto frame = pauseAtFrame.lock(); in onLocationUpdate() local 66 pause = !frame; // Pause if there's no pause-at-frame... in onLocationUpdate() 67 if(frame == frames.back()) // ... or if we've reached the pause-at-frame in onLocationUpdate() 90 std::shared_ptr<Frame> frame; in enter() local 94 frame = lock.createFrame(file, function); in enter() 100 frames.push_back(frame); in enter() 102 if(f) { f(*frame); } in enter() 127 auto &frame in update() local 143 Frame Thread::frame() const frame() function in vk::dbg::Thread [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_dynaudnorm.c | 100 { "framelen", "set the frame length in msec", OFFSET(frame_len_msec), AV_OPT_TYPE_INT, {.i64 = 500}, 10, 8000, FLAGS }, 101 { "f", "set the frame length in msec", OFFSET(frame_len_msec), AV_OPT_TYPE_INT, {.i64 = 500}, 10, 8000, FLAGS }, 122 { "overlap", "set the frame overlap", OFFSET(overlap), AV_OPT_TYPE_DOUBLE, {.dbl=.0}, 0.0, 1.0, FLAGS }, 123 { "o", "set the frame overlap", OFFSET(overlap), AV_OPT_TYPE_DOUBLE, {.dbl=.0}, 0.0, 1.0, FLAGS }, 318 av_log(ctx, AV_LOG_DEBUG, "frame len %d\n", s->frame_len); in config_input() 378 static double find_peak_magnitude(AVFrame *frame, int channel) in find_peak_magnitude() argument 383 for (int c = 0; c < frame->ch_layout.nb_channels; c++) { in find_peak_magnitude() 384 double *data_ptr = (double *)frame->extended_data[c]; in find_peak_magnitude() 386 for (int i = 0; i < frame->nb_samples; i++) in find_peak_magnitude() 390 double *data_ptr = (double *)frame in find_peak_magnitude() 399 compute_frame_rms(AVFrame *frame, int channel) compute_frame_rms() argument 425 get_max_local_gain(DynamicAudioNormalizerContext *s, AVFrame *frame, int channel) get_max_local_gain() argument 530 bypass_channel(DynamicAudioNormalizerContext *s, AVFrame *frame, int ch) bypass_channel() argument 537 perform_dc_correction(DynamicAudioNormalizerContext *s, AVFrame *frame) perform_dc_correction() argument 582 compute_frame_std_dev(DynamicAudioNormalizerContext *s, AVFrame *frame, int channel) compute_frame_std_dev() argument 608 perform_compression(DynamicAudioNormalizerContext *s, AVFrame *frame) perform_compression() argument 658 analyze_frame(DynamicAudioNormalizerContext *s, AVFilterLink *outlink, AVFrame **frame) analyze_frame() argument 726 amplify_frame(DynamicAudioNormalizerContext *s, AVFrame *in, AVFrame *frame, int enabled) amplify_frame() argument [all...] |
H A D | vf_shuffleplanes.c | 94 static int shuffleplanes_filter_frame(AVFilterLink *inlink, AVFrame *frame) in shuffleplanes_filter_frame() argument 103 shuffled_data[i] = frame->data[s->map[i]]; in shuffleplanes_filter_frame() 104 shuffled_linesize[i] = frame->linesize[s->map[i]]; in shuffleplanes_filter_frame() 106 memcpy(frame->data, shuffled_data, sizeof(shuffled_data)); in shuffleplanes_filter_frame() 107 memcpy(frame->linesize, shuffled_linesize, sizeof(shuffled_linesize)); in shuffleplanes_filter_frame() 110 AVFrame *copy = ff_get_video_buffer(ctx->outputs[0], frame->width, frame->height); in shuffleplanes_filter_frame() 117 av_frame_copy(copy, frame); in shuffleplanes_filter_frame() 119 ret = av_frame_copy_props(copy, frame); in shuffleplanes_filter_frame() 125 av_frame_free(&frame); in shuffleplanes_filter_frame() [all...] |
H A D | vf_fieldhint.c | 44 AVFrame *frame[3]; member 124 av_frame_free(&s->frame[0]); in filter_frame() 125 s->frame[0] = s->frame[1]; in filter_frame() 126 s->frame[1] = s->frame[2]; in filter_frame() 127 s->frame[2] = in; in filter_frame() 128 if (!s->frame[1]) in filter_frame() 130 else if (!s->frame[0]) { in filter_frame() 131 s->frame[ in filter_frame() [all...] |
H A D | vsrc_testsrc.c | 64 int draw_once; ///< draw only the first frame, always put out the same picture 65 int draw_once_reset; ///< draw only the first frame or in case of reset 68 void (* fill_picture_fn)(AVFilterContext *ctx, AVFrame *frame); 157 AVFrame *frame; in activate() local 179 frame = av_frame_clone(test->picref); in activate() 181 frame = ff_get_video_buffer(outlink, test->w, test->h); in activate() 183 if (!frame) in activate() 185 frame->pts = test->pts; in activate() 186 frame->key_frame = 1; in activate() 187 frame in activate() 300 haldclutsrc_fill_picture(AVFilterContext *ctx, AVFrame *frame) haldclutsrc_fill_picture() argument 552 test_fill_picture(AVFilterContext *ctx, AVFrame *frame) test_fill_picture() argument 726 draw_text(TestSourceContext *s, AVFrame *frame, FFDrawColor *color, int x0, int y0, const uint8_t *text) draw_text() argument 744 test2_fill_picture(AVFilterContext *ctx, AVFrame *frame) test2_fill_picture() argument 1035 rgbtest_fill_picture_complement(AVFilterContext *ctx, AVFrame *frame) rgbtest_fill_picture_complement() argument 1058 rgbtest_fill_picture(AVFilterContext *ctx, AVFrame *frame) rgbtest_fill_picture() argument 1133 yuvtest_fill_picture8(AVFilterContext *ctx, AVFrame *frame) yuvtest_fill_picture8() argument 1190 yuvtest_fill_picture16(AVFilterContext *ctx, AVFrame *frame) yuvtest_fill_picture16() argument 1358 draw_bar(TestSourceContext *test, const uint8_t color[4], int x, int y, int w, int h, AVFrame *frame) draw_bar() argument 1682 allyuv_fill_picture(AVFilterContext *ctx, AVFrame *frame) allyuv_fill_picture() argument 1742 allrgb_fill_picture(AVFilterContext *ctx, AVFrame *frame) allrgb_fill_picture() argument 1829 colorspectrum_fill_picture(AVFilterContext *ctx, AVFrame *frame) colorspectrum_fill_picture() argument 1984 colorchart_fill_picture(AVFilterContext *ctx, AVFrame *frame) colorchart_fill_picture() argument [all...] |
H A D | vf_colorcorrect.c | 67 AVFrame *frame = arg; in average_slice8() local 73 const int ulinesize = frame->linesize[1]; in average_slice8() 74 const int vlinesize = frame->linesize[2]; in average_slice8() 75 const uint8_t *uptr = (const uint8_t *)frame->data[1] + slice_start * ulinesize; in average_slice8() 76 const uint8_t *vptr = (const uint8_t *)frame->data[2] + slice_start * vlinesize; in average_slice8() 98 AVFrame *frame = arg; in average_slice16() local 104 const int ulinesize = frame->linesize[1] / 2; in average_slice16() 105 const int vlinesize = frame->linesize[2] / 2; in average_slice16() 106 const uint16_t *uptr = (const uint16_t *)frame->data[1] + slice_start * ulinesize; in average_slice16() 107 const uint16_t *vptr = (const uint16_t *)frame in average_slice16() 129 AVFrame *frame = arg; minmax_slice8() local 165 AVFrame *frame = arg; minmax_slice16() local 201 AVFrame *frame = arg; median_8() local 255 AVFrame *frame = arg; median_16() local 318 AVFrame *frame = arg; colorcorrect_slice8() local 358 AVFrame *frame = arg; colorcorrect_slice16() local 396 filter_frame(AVFilterLink *inlink, AVFrame *frame) filter_frame() argument [all...] |
/kernel/linux/linux-5.10/arch/alpha/kernel/ |
H A D | signal.c | 122 # error "Non SA_SIGINFO frame needs rearranging" 139 frame will break. Do not undertake lightly. It also implies an ABI 232 do_rt_sigreturn(struct rt_sigframe __user *frame) in do_rt_sigreturn() argument 238 if (!access_ok(&frame->uc, sizeof(frame->uc))) in do_rt_sigreturn() 240 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set))) in do_rt_sigreturn() 245 if (restore_sigcontext(&frame->uc.uc_mcontext, regs)) in do_rt_sigreturn() 261 * Set up a signal frame. 331 struct sigframe __user *frame; in setup_frame() local 334 frame in setup_frame() 376 struct rt_sigframe __user *frame; setup_rt_frame() local [all...] |
/kernel/linux/linux-6.6/arch/alpha/kernel/ |
H A D | signal.c | 122 # error "Non SA_SIGINFO frame needs rearranging" 139 frame will break. Do not undertake lightly. It also implies an ABI 233 do_rt_sigreturn(struct rt_sigframe __user *frame) in do_rt_sigreturn() argument 239 if (!access_ok(&frame->uc, sizeof(frame->uc))) in do_rt_sigreturn() 241 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set))) in do_rt_sigreturn() 246 if (restore_sigcontext(&frame->uc.uc_mcontext, regs)) in do_rt_sigreturn() 262 * Set up a signal frame. 332 struct sigframe __user *frame; in setup_frame() local 335 frame in setup_frame() 377 struct rt_sigframe __user *frame; setup_rt_frame() local [all...] |
/third_party/python/Objects/ |
H A D | frameobject.c | 591 _PyFrame_GetState(PyFrameObject *frame) in _PyFrame_GetState() argument 593 assert(!_PyFrame_IsIncomplete(frame->f_frame)); in _PyFrame_GetState() 594 if (frame->f_frame->stacktop == 0) { in _PyFrame_GetState() 597 switch(frame->f_frame->owner) { in _PyFrame_GetState() 600 PyGenObject *gen = _PyFrame_GetGenerator(frame->f_frame); in _PyFrame_GetState() 605 if (_PyInterpreterFrame_LASTI(frame->f_frame) < 0) { in _PyFrame_GetState() 608 switch (_PyOpcode_Deopt[_Py_OPCODE(*frame->f_frame->prev_instr)]) in _PyFrame_GetState() 657 * setting the line number of a frame. in frame_setlineno() 670 "can't jump from the 'call' trace event of a new frame"); in frame_setlineno() 843 frame i 867 _PyInterpreterFrame *frame = (_PyInterpreterFrame *)f->_f_frame_data; frame_dealloc() local 1007 init_frame(_PyInterpreterFrame *frame, PyFunctionObject *func, PyObject *locals) init_frame() argument 1077 _PyFrame_OpAlreadyRan(_PyInterpreterFrame *frame, int opcode, int oparg) _PyFrame_OpAlreadyRan() argument 1102 _PyFrame_FastToLocalsWithError(_PyInterpreterFrame *frame) _PyFrame_FastToLocalsWithError() argument 1222 _PyFrame_LocalsToFast(_PyInterpreterFrame *frame, int clear) _PyFrame_LocalsToFast() argument 1299 _PyFrame_IsEntryFrame(PyFrameObject *frame) _PyFrame_IsEntryFrame() argument 1308 PyFrame_GetCode(PyFrameObject *frame) PyFrame_GetCode() argument 1320 PyFrame_GetBack(PyFrameObject *frame) PyFrame_GetBack() argument 1339 PyFrame_GetLocals(PyFrameObject *frame) PyFrame_GetLocals() argument 1346 PyFrame_GetGlobals(PyFrameObject *frame) PyFrame_GetGlobals() argument 1353 PyFrame_GetBuiltins(PyFrameObject *frame) PyFrame_GetBuiltins() argument 1360 PyFrame_GetLasti(PyFrameObject *frame) PyFrame_GetLasti() argument 1371 PyFrame_GetGenerator(PyFrameObject *frame) PyFrame_GetGenerator() argument [all...] |
/third_party/ffmpeg/doc/examples/ |
H A D | filtering_video.c | 179 static void display_frame(const AVFrame *frame, AVRational time_base) in display_frame() argument 185 if (frame->pts != AV_NOPTS_VALUE) { in display_frame() 189 delay = av_rescale_q(frame->pts - last_pts, in display_frame() 194 last_pts = frame->pts; in display_frame() 198 p0 = frame->data[0]; in display_frame() 200 for (y = 0; y < frame->height; y++) { in display_frame() 202 for (x = 0; x < frame->width; x++) in display_frame() 205 p0 += frame->linesize[0]; in display_frame() 214 AVFrame *frame; in main() local 222 frame in main() [all...] |
H A D | encode_audio.c | 38 #include <libavutil/frame.h> 94 static void encode(AVCodecContext *ctx, AVFrame *frame, AVPacket *pkt, in encode() argument 99 /* send the frame for encoding */ in encode() 100 ret = avcodec_send_frame(ctx, frame); in encode() 102 fprintf(stderr, "Error sending the frame to the encoder\n"); in encode() 113 fprintf(stderr, "Error encoding audio frame\n"); in encode() 127 AVFrame *frame; in main() local 189 /* frame containing input raw audio */ in main() 190 frame = av_frame_alloc(); in main() 191 if (!frame) { in main() [all...] |
/third_party/ffmpeg/tests/api/ |
H A D | api-threadmessage-test.c | 27 #include "libavutil/frame.h" 47 AVFrame *frame; member 59 av_frame_free(&msg->frame); in free_frame() 77 .frame = av_frame_alloc(), in sender_thread() 80 if (!msg.frame) { in sender_thread() 86 val = av_asprintf("frame %d/%d from sender %d", in sender_thread() 89 av_frame_free(&msg.frame); in sender_thread() 95 av_frame_free(&msg.frame); in sender_thread() 98 msg.frame->metadata = meta; in sender_thread() 100 /* allocate a real frame i in sender_thread() [all...] |
/kernel/linux/linux-5.10/arch/arm/kernel/ |
H A D | return_address.c | 19 static int save_return_addr(struct stackframe *frame, void *d) in save_return_addr() argument 24 data->addr = (void *)frame->pc; in save_return_addr() 36 struct stackframe frame; in return_address() local 41 frame.fp = (unsigned long)__builtin_frame_address(0); in return_address() 42 frame.sp = current_stack_pointer; in return_address() 43 frame.lr = (unsigned long)__builtin_return_address(0); in return_address() 44 frame.pc = (unsigned long)return_address; in return_address() 46 walk_stackframe(&frame, save_return_addr, &data); in return_address()
|
/kernel/linux/linux-6.6/net/hsr/ |
H A D | hsr_forward.h | 17 struct sk_buff *prp_create_tagged_frame(struct hsr_frame_info *frame, 19 struct sk_buff *hsr_create_tagged_frame(struct hsr_frame_info *frame, 21 struct sk_buff *hsr_get_untagged_frame(struct hsr_frame_info *frame, 23 struct sk_buff *prp_get_untagged_frame(struct hsr_frame_info *frame, 25 bool prp_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port); 26 bool hsr_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port); 28 struct hsr_frame_info *frame); 30 struct hsr_frame_info *frame);
|
/kernel/linux/linux-6.6/drivers/net/can/ |
H A D | can327.c | 101 /* The CAN frame and config the ELM327 is sending/using, 170 /* Schedule a CAN frame and necessary config changes to be sent to the TTY. */ 171 static void can327_send_frame(struct can327 *elm, struct can_frame *frame) in can327_send_frame() argument 176 if (elm->can_frame_to_send.can_id != frame->can_id) { in can327_send_frame() 178 if ((frame->can_id ^ elm->can_frame_to_send.can_id) in can327_send_frame() 181 (frame->can_id & CAN_EFF_FLAG ? 0 : CAN327_CAN_CONFIG_SEND_SFF) | in can327_send_frame() 189 if (frame->can_id & CAN_EFF_FLAG) { in can327_send_frame() 202 /* Schedule the CAN frame itself. */ in can327_send_frame() 203 elm->can_frame_to_send = *frame; in can327_send_frame() 284 struct can_frame *frame; in can327_uart_side_failure() local 329 struct can_frame *frame; can327_parse_error() local 393 struct can_frame *frame; can327_parse_frame() local 550 struct can_frame *frame = &elm->can_frame_to_send; can327_handle_prompt() local 816 struct can_frame *frame = (struct can_frame *)skb->data; can327_netdev_start_xmit() local [all...] |