Searched refs:direction (Results 1 - 19 of 19) sorted by relevance

/seL4-camkes-master/projects/picotcp/stack/
H A Dpico_protocol.c82 static int proto_loop(struct pico_protocol *proto, int loop_score, int direction) argument
85 if (direction == PICO_LOOP_DIR_IN)
87 else if (direction == PICO_LOOP_DIR_OUT)
93 static struct pico_tree_node *roundrobin_init(struct pico_proto_rr *rr, int direction) argument
103 if (direction == PICO_LOOP_DIR_IN)
111 static void roundrobin_end(struct pico_proto_rr *rr, int direction, struct pico_tree_node *last) argument
113 if (direction == PICO_LOOP_DIR_IN)
119 static int pico_protocol_generic_loop(struct pico_proto_rr *rr, int loop_score, int direction) argument
122 struct pico_tree_node *next_node = roundrobin_init(rr, direction);
134 loop_score = proto_loop(next, loop_score, direction);
150 pico_protocol_datalink_loop(int loop_score, int direction) argument
155 pico_protocol_network_loop(int loop_score, int direction) argument
160 pico_protocol_transport_loop(int loop_score, int direction) argument
165 pico_protocol_socket_loop(int loop_score, int direction) argument
[all...]
H A Dpico_device.c366 static int devloop(struct pico_device *dev, int loop_score, int direction) argument
375 if (direction == PICO_LOOP_DIR_OUT)
384 static struct pico_tree_node *pico_dev_roundrobin_start(int direction) argument
392 if (direction == PICO_LOOP_DIR_IN)
398 static void pico_dev_roundrobin_end(int direction, struct pico_tree_node *last) argument
400 if (direction == PICO_LOOP_DIR_IN)
408 int pico_devices_loop(int loop_score, int direction) argument
411 struct pico_tree_node *next_node = pico_dev_roundrobin_start(direction);
421 loop_score = devloop(next, loop_score, direction);
433 pico_dev_roundrobin_end(direction, next_nod
[all...]
/seL4-camkes-master/projects/projects_libs/libusbdrivers/src/drivers/
H A Dstorage.h19 struct xact *data, int ndata, int direction);
H A Dstorage.c304 struct xact *data, int ndata, int direction)
331 cbw->flags = (direction & 0x1) << 7;
351 if (direction) {
303 usb_storage_xfer(struct usb_dev *udev, void *cb, size_t cb_len, struct xact *data, int ndata, int direction) argument
/seL4-camkes-master/projects/picotcp/include/
H A Dpico_protocol.h90 int pico_protocol_datalink_loop(int loop_score, int direction);
91 int pico_protocol_network_loop(int loop_score, int direction);
92 int pico_protocol_transport_loop(int loop_score, int direction);
93 int pico_protocol_socket_loop(int loop_score, int direction);
H A Dpico_device.h46 int pico_devices_loop(int loop_score, int direction);
/seL4-camkes-master/projects/util_libs/libplatsupport/src/plat/imx6/
H A Dgpio.c46 uint32_t direction; /* +0x04 */ member in struct:imx6_gpio_regs
100 /* Set direction */
101 v = bank->direction;
106 &bank->direction, bank->direction, v);
111 &bank->direction, bank->direction, v);
113 bank->direction = v;
/seL4-camkes-master/projects/util_libs/libethdrivers/src/plat/imx6/uboot/
H A Dmxc_gpio.c87 enum mxc_gpio_direction direction, ps_io_ops_t *io_ops)
111 switch (direction) {
86 mxc_gpio_direction(unsigned int gpio, enum mxc_gpio_direction direction, ps_io_ops_t *io_ops) argument
/seL4-camkes-master/projects/seL4_projects_libs/libsel4vmmplatsupport/src/sel4_arch/aarch64/
H A Dsysreg_exception.h34 uint32_t direction: 1; member in struct:sysreg::sysreg_params
H A Dsysreg_exception.c77 return entry->handler(vcpu, &entry->sysreg, sysreg_op.params.direction);
/seL4-camkes-master/projects/picotcp/modules/
H A Dpico_nat.c290 static inline void pico_ipv4_nat_set_tcp_flags(struct pico_nat_tuple *t, struct pico_frame *f, uint8_t direction) argument
299 if ((tcp->flags & PICO_TCP_FIN) && (direction == PICO_NAT_INBOUND))
302 if ((tcp->flags & PICO_TCP_FIN) && (direction == PICO_NAT_OUTBOUND))
306 static int pico_ipv4_nat_sniff_session(struct pico_nat_tuple *t, struct pico_frame *f, uint8_t direction) argument
313 pico_ipv4_nat_set_tcp_flags(t, f, direction);
/seL4-camkes-master/projects/picotcp/test/examples/
H A Dtftp.c36 char direction; member in struct:note_t
43 struct note_t *add_note(const char *filename, int fd, char direction) argument
49 note->direction = direction;
/seL4-camkes-master/projects/util_libs/libethdrivers/src/plat/am335x/
H A Dlwiplib.h230 u32_t direction; /* Tx -1 / Rx - 0 */ member in struct:cpsw_switch_param
/seL4-camkes-master/projects/camkes-tool/camkes/parser/tests/
H A Dteststage3.py950 direction of a method parameter and have it assumed to be 'in'. This
967 self.assertEqual(x.direction, 'in')
989 self.assertEqual(x.direction, 'in')
992 self.assertEqual(y.direction, 'inout')
995 self.assertEqual(z.direction, 'in')
1001 self.assertEqual(x.direction, 'out')
1004 self.assertEqual(y.direction, 'in')
1007 self.assertEqual(z.direction, 'in')
/seL4-camkes-master/projects/camkes-tool/camkes/parser/
H A Dstage3.py69 'direction',
155 return Parameter(scalar_parameter.name, scalar_parameter.direction,
659 # Default the direction to 'in' if not specified.
660 direction = 'in'
664 direction, type, id = args
669 return Parameter(id, direction, type, location=location)
802 'direction': _collapse,
/seL4-camkes-master/projects/musllibc/src/regex/
H A Dregcomp.c1208 tre_tag_direction_t direction = TRE_TAG_MINIMIZE; local
1327 tnfa->tag_directions[tag] = direction;
1418 tnfa->tag_directions[tag] = direction;
1436 direction = TRE_TAG_MINIMIZE;
1486 tnfa->tag_directions[tag] = direction;
1550 direction = TRE_TAG_MINIMIZE;
1552 direction = TRE_TAG_MAXIMIZE;
1622 direction = TRE_TAG_MAXIMIZE;
/seL4-camkes-master/projects/camkes-tool/camkes/ast/
H A Dobjects.py940 @ast_property("direction", lambda x: isinstance(x, six.string_types) and x in ('in', 'inout', 'out', 'refin'))
944 def __init__(self, name, direction, type, array=False, location=None):
947 self.direction = direction
/seL4-camkes-master/kernel/manual/parts/
H A Dapi.tex89 '\texttt{seL4\_Word rw}', the access direction that will currently trigger the breakpoint,
/seL4-camkes-master/projects/picotcp/docs/user_manual/
H A Dchap_api_ipv4.tex322 a one-direction NAT entry will be made.

Completed in 211 milliseconds