Home
last modified time | relevance | path

Searched refs:x25 (Results 1 – 25 of 153) sorted by relevance

1234567

/linux/net/x25/
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_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_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 = timer_container_of(x25, t, timer); x25_timer_expiry() local
[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...]
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 DMakefile6 obj-$(CONFIG_X25) += x25.o
8 x25-y := af_x25.o x25_dev.o x25_facilities.o x25_in.o \
11 x25-$(CONFIG_SYSCTL) += sysctl_net_x25.o
H A DKconfig21 <file:Documentation/networking/x25.rst> and
22 <file:Documentation/networking/x25-iface.rst>.
32 will be called x25. If unsure, say N.
H A Dx25_facilities.c25 #include <net/x25.h>
268 struct x25_sock *x25 = x25_sk(sk); in x25_negotiate_facilities() local
269 struct x25_facilities *ours = &x25->facilities; in x25_negotiate_facilities()
277 len = x25_parse_facilities(skb, &theirs, dte, &x25->vc_facil_mask); in x25_negotiate_facilities()
334 * currently attached x25 link.
/linux/lib/crypto/
H A Dcurve25519-fiat32.c246 { const u32 x25 = in2[1]; in fe_add_impl() local
249 out[1] = (x7 + x25); in fe_add_impl()
289 { const u32 x25 = in2[1]; in fe_sub_impl() local
292 out[1] = ((0x3fffffe + x7) - x25); in fe_sub_impl()
332 { const u32 x25 = in2[1]; in fe_mul_impl() local
335 { u64 x41 = (((u64)x23 * x7) + ((u64)x25 * x5)); in fe_mul_impl()
336 { u64 x42 = ((((u64)(0x2 * x25) * x7) + ((u64)x23 * x9)) + ((u64)x27 * x5)); in fe_mul_impl()
337 { u64 x43 = (((((u64)x25 * x9) + ((u64)x27 * x7)) + ((u64)x23 * x11)) + ((u64)x29 * x5)); in fe_mul_impl()
338 { u64 x44 = (((((u64)x27 * x9) + (0x2 * (((u64)x25 * x11) + ((u64)x29 * x7)))) + ((u64)x23 * x13)) + ((u64)x31 * x5)); in fe_mul_impl()
339 { u64 x45 = (((((((u64)x27 * x11) + ((u64)x29 * x9)) + ((u64)x25 * x1 in fe_mul_impl()
462 { u64 x25 = (0x2 * (((((u64)x8 * x8) + ((u64)x6 * x10)) + ((u64)x2 * x14)) + ((u64)(0x2 * x4) * x12))); fe_sqr_impl() local
655 { const u32 x25 = 0; fe_mul_121666_impl() local
[all...]
/linux/arch/arm64/kernel/
H A Dhibernate-asm.S58 mov x25, x5
85 break_before_make_ttbr_switch x25, x21, x6, x8
H A Defi-rt-wrapper.S29 stp x25, x26, [sp, #80]
83 ldp x25, x26, [sp, #80]
H A Dsleep.S70 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64]
150 ldp x25, x26, [x29, #64]
/linux/Documentation/admin-guide/
H A Dsvga.rst31 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
55 the standard 80x25 mode.
61 0 0F00 80x25
74 "0 0F00 80x25" means that the first menu item (the menu items are numbered
75 from "0" to "9" and from "a" to "z") is a 80x25 mode with ID=0x0f00 (see the
90 the standard modes (80x25 and 80x50) followed by "special" modes (80x28 and
128 (Usually 940=80x43, 941=132x25, 942=132x44, 943=80x60, 944=100x60,
133 0x0f00 standard 80x25, don't reset mode if already set (=FFFF)
145 E.g., 0x1950 corresponds to a 80x25 mode, 0x2b84 to 132x43 etc.
151 0xffff equivalent to 0x0f00 (standard 80x25)
[all...]
/linux/arch/powerpc/boot/dts/
H A Dholly.dts161 0x800 0x0 0x0 0x2 &RT0 0x25 0x0
165 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0
173 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0
177 0x2000 0x0 0x0 0x3 &RT0 0x25 0x0
/linux/Documentation/networking/
H A Dindex.rst131 x25
132 x25-iface
H A Dx25.rst34 A linux-x25 mailing list has been created at vger.kernel.org to support the
39 subscribe linux-x25
/linux/Documentation/translations/zh_CN/networking/
H A Dindex.rst147 * x25
148 * x25-iface
/linux/tools/testing/selftests/kvm/lib/arm64/
H A Dhandlers.S17 stp x24, x25, [sp, #16 * 12]
44 ldp x24, x25, [sp, #16 * 12]
/linux/tools/testing/selftests/kvm/lib/riscv/
H A Dhandlers.S38 sd x25, 200(sp)
69 ld x25, 200(sp)
/linux/arch/riscv/kernel/probes/
H A Drethook_trampoline.S37 REG_S x25, PT_S9(sp)
69 REG_L x25, PT_S9(sp)
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6qdl-pico-dwarf.dtsi31 reg = <0x25>;
H A Dimx6qdl-pico-nymph.dtsi30 reg = <0x25>;
/linux/net/wireless/certs/
H A Dsforshee.hex22 0x7e, 0xa5, 0x83, 0x71, 0x25, 0x7e, 0x90, 0x7c,
41 0x5b, 0x7f, 0x25, 0x75, 0x68, 0xa1, 0xea, 0xd3,
58 0x25, 0x23, 0x4e, 0xaa, 0x22, 0x0c, 0x16, 0xb9,
/linux/arch/riscv/include/asm/
H A Dasm.h148 REG_S x25, PT_S9(sp)
178 REG_L x25, PT_S9(sp)

1234567