Home
last modified time | relevance | path

Searched refs:x25 (Results 1 - 25 of 2466) sorted by relevance

12345678910>>...99

/kernel/linux/linux-5.10/net/x25/
H A Dx25_subr.c29 #include <net/x25.h>
36 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local
39 skb_queue_purge(&x25->ack_queue); in x25_clear_queues()
40 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues()
41 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues()
42 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues()
54 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local
55 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked()
60 if (x25->va != nr) in x25_frames_acked()
61 while (skb_peek(&x25 in x25_frames_acked()
92 struct x25_sock *x25 = x25_sk(sk); x25_validate_nr() local
111 struct x25_sock *x25 = x25_sk(sk); x25_write_internal() local
263 struct x25_sock *x25 = x25_sk(sk); x25_decode() local
341 struct x25_sock *x25 = x25_sk(sk); x25_disconnect() local
374 struct x25_sock *x25 = x25_sk(sk); x25_check_rbuf() local
[all...]
H A Dx25_out.c26 #include <net/x25.h>
53 struct x25_sock *x25 = x25_sk(sk); in x25_output() local
54 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output()
56 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output()
94 if (x25->neighbour->extended) in x25_output()
118 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
123 if (x25->neighbour->extended) { in x25_send_iframe()
124 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe()
126 skb->data[3] |= (x25->vr << 1) & 0xFE; in x25_send_iframe()
129 skb->data[2] |= (x25 in x25_send_iframe()
141 struct x25_sock *x25 = x25_sk(sk); x25_kick() local
215 struct x25_sock *x25 = x25_sk(sk); x25_enquiry_response() local
[all...]
H A Dx25_in.c30 #include <net/x25.h>
35 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local
38 x25->fraglen += skb->len; in x25_queue_rx_frame()
39 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
44 if (!more && x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame()
45 int len = x25->fraglen + skb->len; in x25_queue_rx_frame()
52 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
56 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame()
62 skb_dequeue(&x25->fragment_queue)) != NULL) { in x25_queue_rx_frame()
63 skb_pull(skbo, (x25 in x25_queue_rx_frame()
91 struct x25_sock *x25 = x25_sk(sk); x25_state1_machine() local
212 struct x25_sock *x25 = x25_sk(sk); x25_state3_machine() local
346 struct x25_sock *x25 = x25_sk(sk); x25_state4_machine() local
392 struct x25_sock *x25 = x25_sk(sk); x25_state5_machine() local
417 struct x25_sock *x25 = x25_sk(sk); x25_process_rx_frame() local
[all...]
H A Dx25_timer.c22 #include <net/x25.h>
29 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
31 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
49 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
51 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
56 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
58 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
63 struct x25_sock *x25 in x25_start_t22timer() local
70 struct x25_sock *x25 = x25_sk(sk); x25_start_t23timer() local
82 struct x25_sock *x25 = x25_sk(sk); x25_display_timer() local
133 struct x25_sock *x25 = x25_sk(sk); x25_do_timer_expiry() local
159 struct x25_sock *x25 = from_timer(x25, t, timer); x25_timer_expiry() local
[all...]
H A Dx25_proc.c21 #include <net/x25.h>
81 struct x25_sock *x25; in x25_seq_socket_show() local
92 x25 = x25_sk(s); in x25_seq_socket_show()
94 if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL) in x25_seq_socket_show()
97 devname = x25->neighbour->dev->name; in x25_seq_socket_show()
101 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show()
102 !x25->source_addr.x25_addr[0] ? "*" : x25 in x25_seq_socket_show()
[all...]
H A Daf_x25.c57 #include <net/x25.h>
520 struct x25_sock *x25; in x25_alloc_socket() local
528 x25 = x25_sk(sk); in x25_alloc_socket()
529 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket()
530 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket()
531 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket()
532 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket()
541 struct x25_sock *x25; in x25_create() local
559 x25 = x25_sk(sk); in x25_create()
569 x25 in x25_create()
600 struct x25_sock *x25, *ox25; x25_make_new() local
638 struct x25_sock *x25; x25_release() local
755 struct x25_sock *x25 = x25_sk(sk); x25_connect() local
926 struct x25_sock *x25 = x25_sk(sk); x25_getname() local
1111 struct x25_sock *x25 = x25_sk(sk); x25_sendmsg() local
1286 struct x25_sock *x25 = x25_sk(sk); x25_recvmsg() local
1387 struct x25_sock *x25 = x25_sk(sk); x25_ioctl() local
[all...]
/kernel/linux/linux-6.6/net/x25/
H A Dx25_subr.c29 #include <net/x25.h>
36 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local
39 skb_queue_purge(&x25->ack_queue); in x25_clear_queues()
40 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues()
41 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues()
42 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues()
54 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local
55 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked()
60 if (x25->va != nr) in x25_frames_acked()
61 while (skb_peek(&x25 in x25_frames_acked()
92 struct x25_sock *x25 = x25_sk(sk); x25_validate_nr() local
111 struct x25_sock *x25 = x25_sk(sk); x25_write_internal() local
263 struct x25_sock *x25 = x25_sk(sk); x25_decode() local
341 struct x25_sock *x25 = x25_sk(sk); x25_disconnect() local
374 struct x25_sock *x25 = x25_sk(sk); x25_check_rbuf() local
[all...]
H A Dx25_out.c26 #include <net/x25.h>
53 struct x25_sock *x25 = x25_sk(sk); in x25_output() local
54 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output()
56 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output()
94 if (x25->neighbour->extended) in x25_output()
118 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
123 if (x25->neighbour->extended) { in x25_send_iframe()
124 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe()
126 skb->data[3] |= (x25->vr << 1) & 0xFE; in x25_send_iframe()
129 skb->data[2] |= (x25 in x25_send_iframe()
141 struct x25_sock *x25 = x25_sk(sk); x25_kick() local
215 struct x25_sock *x25 = x25_sk(sk); x25_enquiry_response() local
[all...]
H A Dx25_in.c30 #include <net/x25.h>
35 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local
38 x25->fraglen += skb->len; in x25_queue_rx_frame()
39 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
44 if (x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame()
45 int len = x25->fraglen + skb->len; in x25_queue_rx_frame()
52 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
56 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame()
62 skb_dequeue(&x25->fragment_queue)) != NULL) { in x25_queue_rx_frame()
63 skb_pull(skbo, (x25 in x25_queue_rx_frame()
91 struct x25_sock *x25 = x25_sk(sk); x25_state1_machine() local
212 struct x25_sock *x25 = x25_sk(sk); x25_state3_machine() local
346 struct x25_sock *x25 = x25_sk(sk); x25_state4_machine() local
392 struct x25_sock *x25 = x25_sk(sk); x25_state5_machine() local
417 struct x25_sock *x25 = x25_sk(sk); x25_process_rx_frame() local
[all...]
H A Dx25_timer.c22 #include <net/x25.h>
29 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
31 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
49 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
51 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
56 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
58 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
63 struct x25_sock *x25 in x25_start_t22timer() local
70 struct x25_sock *x25 = x25_sk(sk); x25_start_t23timer() local
82 struct x25_sock *x25 = x25_sk(sk); x25_display_timer() local
133 struct x25_sock *x25 = x25_sk(sk); x25_do_timer_expiry() local
159 struct x25_sock *x25 = from_timer(x25, t, timer); x25_timer_expiry() local
[all...]
H A Dx25_proc.c21 #include <net/x25.h>
81 struct x25_sock *x25; in x25_seq_socket_show() local
91 x25 = x25_sk(s); in x25_seq_socket_show()
93 if (!x25->neighbour || !x25->neighbour->dev) in x25_seq_socket_show()
96 devname = x25->neighbour->dev->name; in x25_seq_socket_show()
100 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show()
101 !x25->source_addr.x25_addr[0] ? "*" : x25 in x25_seq_socket_show()
[all...]
H A Daf_x25.c57 #include <net/x25.h>
510 struct x25_sock *x25; in x25_alloc_socket() local
518 x25 = x25_sk(sk); in x25_alloc_socket()
519 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket()
520 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket()
521 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket()
522 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket()
531 struct x25_sock *x25; in x25_create() local
549 x25 = x25_sk(sk); in x25_create()
559 x25 in x25_create()
590 struct x25_sock *x25, *ox25; x25_make_new() local
628 struct x25_sock *x25; x25_release() local
750 struct x25_sock *x25 = x25_sk(sk); x25_connect() local
921 struct x25_sock *x25 = x25_sk(sk); x25_getname() local
1106 struct x25_sock *x25 = x25_sk(sk); x25_sendmsg() local
1281 struct x25_sock *x25 = x25_sk(sk); x25_recvmsg() local
1381 struct x25_sock *x25 = x25_sk(sk); x25_ioctl() local
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/sis/
H A Doem310.h255 {0xeb,0x04,0x25,0x18},
258 {0xeb,0x04,0x25,0x18},
260 {0xeb,0x15,0x25,0xf6}
276 {0xeb,0x04,0x25,0x18},
279 {0xeb,0x04,0x25,0x18},
288 {0xeb,0x04,0x25,0x18},
289 {0xeb,0x04,0x25,0x18},
290 {0xeb,0x15,0x25,0xf6}
298 {0xeb,0x04,0x25,0x18},
299 {0xeb,0x04,0x25,
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/sis/
H A Doem310.h257 {0xeb,0x04,0x25,0x18},
260 {0xeb,0x04,0x25,0x18},
262 {0xeb,0x15,0x25,0xf6}
278 {0xeb,0x04,0x25,0x18},
281 {0xeb,0x04,0x25,0x18},
290 {0xeb,0x04,0x25,0x18},
291 {0xeb,0x04,0x25,0x18},
292 {0xeb,0x15,0x25,0xf6}
300 {0xeb,0x04,0x25,0x18},
301 {0xeb,0x04,0x25,
[all...]
/kernel/linux/linux-5.10/drivers/hid/
H A Dhid-waltop.c57 0x25, 0x03, /* Logical Maximum (3), */
63 0x25, 0x01, /* Logical Maximum (1), */
108 0x25, 0x03, /* Logical Maximum (3), */
114 0x25, 0x01, /* Logical Maximum (1), */
159 0x25, 0x03, /* Logical Maximum (3), */
165 0x25, 0x01, /* Logical Maximum (1), */
212 0x25, 0x03, /* Logical Maximum (3), */
218 0x25, 0x01, /* Logical Maximum (1), */
263 0x25, 0x03, /* Logical Maximum (3), */
270 0x25,
[all...]
H A Dhid-kye.c30 0x25, 0x7F, /* Logical Maximum (127), */
42 0x25, 0x01, /* Logical Maximum (1), */
88 0x25, 0x7F, /* Logical Maximum (127), */
100 0x25, 0x01, /* Logical Maximum (1), */
145 0x25, 0x01, /* Logical Maximum (1), */
169 0x25, 0x01, /* Logical Maximum (1), */
187 0x25, 0x7F, /* Logical Maximum (127), */
199 0x25, 0x01, /* Logical Maximum (1), */
244 0x25, 0x01, /* Logical Maximum (1), */
268 0x25,
[all...]
H A Dhid-uclogic-rdesc.c34 0x25, 0x01, /* Logical Maximum (1), */
79 0x25, 0x01, /* Logical Maximum (1), */
117 0x25, 0x01, /* Logical Maximum (1), */
127 0x25, 0x7F, /* Logical Maximum (127), */
132 0x25, 0x01, /* Logical Maximum (1), */
156 0x25, 0x01, /* Logical Maximum (1), */
194 0x25, 0x01, /* Logical Maximum (1), */
204 0x25, 0x7F, /* Logical Maximum (127), */
209 0x25, 0x01, /* Logical Maximum (1), */
233 0x25,
[all...]
H A Dhid-maltron.c33 0x25, 0x01, /* Logical Maximum (1) */
63 0x25, 0x02, /* Logical Maximum (2) */
69 0x25, 0x01, /* Logical Maximum (1) */
90 0x25, 0x01, /* Logical Maximum (1) */
122 0x25, 0x02, /* Logical Maximum (2) */
128 0x25, 0x01, /* Logical Maximum (1) */
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-waltop.c57 0x25, 0x03, /* Logical Maximum (3), */
63 0x25, 0x01, /* Logical Maximum (1), */
108 0x25, 0x03, /* Logical Maximum (3), */
114 0x25, 0x01, /* Logical Maximum (1), */
159 0x25, 0x03, /* Logical Maximum (3), */
165 0x25, 0x01, /* Logical Maximum (1), */
212 0x25, 0x03, /* Logical Maximum (3), */
218 0x25, 0x01, /* Logical Maximum (1), */
263 0x25, 0x03, /* Logical Maximum (3), */
270 0x25,
[all...]
H A Dhid-uclogic-rdesc.c34 0x25, 0x01, /* Logical Maximum (1), */
79 0x25, 0x01, /* Logical Maximum (1), */
117 0x25, 0x01, /* Logical Maximum (1), */
127 0x25, 0x7F, /* Logical Maximum (127), */
132 0x25, 0x01, /* Logical Maximum (1), */
156 0x25, 0x01, /* Logical Maximum (1), */
194 0x25, 0x01, /* Logical Maximum (1), */
204 0x25, 0x7F, /* Logical Maximum (127), */
209 0x25, 0x01, /* Logical Maximum (1), */
233 0x25,
[all...]
H A Dhid-sigmamicro.c34 0x25, 0x01, /* Logical Maximum (1) 37 */
48 0x25, 0x01, /* Logical Maximum (1) 67 */
61 0x25, 0x01, /* Logical Maximum (1) 92 */
68 0x25, 0x01, /* Logical Maximum (1) 106 */
81 0x25, 0x01, /* Logical Maximum (1) 131 */
94 0x25, 0x01, /* Logical Maximum (1) 156 */
/kernel/linux/linux-6.6/drivers/hid/amd-sfh-hid/hid_descriptor/
H A Damd_sfh_hid_report_desc.h24 0x25, 2, /* HID logical MAX_8(2) */
35 0x25, 5, /* HID logical Max_8(5) */
49 0x25, 5, /* HID logical Max_8(5) */
63 0x25, 6, /* HID logical Max_8(6) */
118 0x25, 6, /* HID logical Max_8(6) */
133 0x25, 5, /* HID logical Max_8(5) */
175 0x25, 1, /* HID logical Min_8(1) True = In motion */
191 0x25, 2, /* HID logical MAX_8(2) */
202 0x25, 5, /* HID logical Max_8(5) */
216 0x25,
[all...]
/kernel/linux/linux-5.10/drivers/hid/i2c-hid/
H A Di2c-hid-dmi-quirks.c46 0x25, 0x00, /* Location of output report */
66 0x25, 0x01, /* Logical Maximum (1), */
76 0x25, 0x7F, /* Logical Maximum (127), */
90 0x25, 0x01, /* Logical Maximum (1), */
98 0x25, 0x05, /* Logical Maximum (5), */
121 0x25, 0x01, /* Logical Maximum (1), */
129 0x25, 0x05, /* Logical Maximum (5), */
150 0x25, 0x01, /* Logical Maximum (1), */
158 0x25, 0x05, /* Logical Maximum (5), */
179 0x25,
[all...]
/kernel/linux/linux-6.6/drivers/hid/i2c-hid/
H A Di2c-hid-dmi-quirks.c48 0x25, 0x00, /* Location of output report */
68 0x25, 0x01, /* Logical Maximum (1), */
78 0x25, 0x7F, /* Logical Maximum (127), */
92 0x25, 0x01, /* Logical Maximum (1), */
100 0x25, 0x05, /* Logical Maximum (5), */
123 0x25, 0x01, /* Logical Maximum (1), */
131 0x25, 0x05, /* Logical Maximum (5), */
152 0x25, 0x01, /* Logical Maximum (1), */
160 0x25, 0x05, /* Logical Maximum (5), */
181 0x25,
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/hid/tests/
H A Ddescriptors_wacom.py15 0x25, 0x01, # . Logical Maximum (1),
26 0x25, 0x7F, # . Logical Maximum (127),
46 0x25, 0x01, # . Logical Maximum (1),
80 0x25, 0x3F, # . Logical Maximum (63),
104 0x25, 0x3F, # . Logical Maximum (63),
128 0x25, 0x01, # . Logical Maximum (1),
146 0x25, 0x47, # . Logical Maximum (71),
153 0x25, 0x01, # . Logical Maximum (1), # !!! Errata: Missing Physical Max = 0
166 0x25, 0x64, # . Logical Maximum (100),
171 0x25,
[all...]

Completed in 12 milliseconds

12345678910>>...99