Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 180) sorted by relevance

12345678

/u-boot/tools/patman/
A D__main__.py61 send = subparsers.add_parser( variable
63 send.add_argument('-i', '--ignore-errors', action='store_true',
68 send.add_argument('-m', '--no-maintainers', action='store_false',
71 send.add_argument(
79 send.add_argument('-r', '--in-reply-to', type=str, action='store',
81 send.add_argument('-t', '--ignore-bad-tags', action='store_true',
86 send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
98 send.add_argument('--no-tree', dest='check_patch_use_tree',
104 send.add_argument('--smtp-server', type=str,
107 send.add_argument('patchfiles', nargs='*')
[all …]
A Dpatman61 send = subparsers.add_parser( variable
63 send.add_argument('-i', '--ignore-errors', action='store_true',
68 send.add_argument('-m', '--no-maintainers', action='store_false',
71 send.add_argument(
79 send.add_argument('-r', '--in-reply-to', type=str, action='store',
81 send.add_argument('-t', '--ignore-bad-tags', action='store_true',
86 send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
98 send.add_argument('--no-tree', dest='check_patch_use_tree',
104 send.add_argument('--smtp-server', type=str,
107 send.add_argument('patchfiles', nargs='*')
[all …]
A Dtest_settings.py47 send = subparsers.add_parser('send')
48 send.add_argument('--no-check', action='store_false',
55 send_args, _ = send.parse_known_args([])
66 send_args, _ = send.parse_known_args([])
A DREADME.rst164 ./tools/patman/patman send -n
171 ./tools/patman/patman -c5 send -n
178 ./tools/patman/patman -c5 -s1 send -n
356 interpreted by git send-email if you use it.
483 commit, and type 'patman' to check and send them.
503 patman -s1 send -n
510 patman send -n
526 patman -s1 send -n
561 Now to send the patches, take off the -n flag:
565 patman -s1 send
[all …]
A Dpatman.rst164 ./tools/patman/patman send -n
171 ./tools/patman/patman -c5 send -n
178 ./tools/patman/patman -c5 -s1 send -n
356 interpreted by git send-email if you use it.
483 commit, and type 'patman' to check and send them.
503 patman -s1 send -n
510 patman send -n
526 patman -s1 send -n
561 Now to send the patches, take off the -n flag:
565 patman -s1 send
[all …]
/u-boot/board/traverse/common/
A Dten64_controller.c100 struct t64uc_message send, recv; in ten64_controller_send_recv_command() local
106 send.preamb = T64_UC_API_HEADER_PREAMB; in ten64_controller_send_recv_command()
107 send.cmd = uc_cmd; in ten64_controller_send_recv_command()
108 send.len = cmd_data_len; in ten64_controller_send_recv_command()
110 memcpy(send.data, uc_cmd_data, cmd_data_len); in ten64_controller_send_recv_command()
113 command_message.len = T64_UC_API_MSG_HEADER_SIZE + send.len; in ten64_controller_send_recv_command()
114 command_message.buf = (void *)&send; in ten64_controller_send_recv_command()
/u-boot/arch/arm/mach-bcm283x/
A Dmbox.c17 int bcm2835_mbox_call_raw(u32 chan, u32 send, u32 *recv) in bcm2835_mbox_call_raw() argument
26 if (send & BCM2835_CHAN_MASK) { in bcm2835_mbox_call_raw()
27 printf("mbox: Illegal mbox data 0x%08x\n", send); in bcm2835_mbox_call_raw()
58 val = BCM2835_MBOX_PACK(chan, send); in bcm2835_mbox_call_raw()
/u-boot/tools/kermit/
A Dsend_image14 set send pack 1000
22 send \%1
A Dsend_cmd12 set send pack 1000
A Ddot.kermrc10 set send pack 1000
A Dflash_param17 set send pack 1000
/u-boot/lib/
A Dstring.c440 char *sbegin, *send; in strtok() local
451 send = strpbrk( sbegin, ct); in strtok()
452 if (send && *send != '\0') in strtok()
453 *send++ = '\0'; in strtok()
454 ___strtok = send; in strtok()
/u-boot/include/
A Dmailbox-uclass.h67 int (*send)(struct mbox_chan *chan, const void *data); member
A Ddma-uclass.h110 int (*send)(struct dma *dma, void *src, size_t len, void *metadata); member
/u-boot/doc/develop/
A Dpatman.rst164 ./tools/patman/patman send -n
171 ./tools/patman/patman -c5 send -n
178 ./tools/patman/patman -c5 -s1 send -n
356 interpreted by git send-email if you use it.
483 commit, and type 'patman' to check and send them.
503 patman -s1 send -n
510 patman send -n
526 patman -s1 send -n
561 Now to send the patches, take off the -n flag:
565 patman -s1 send
[all …]
/u-boot/drivers/tpm/
A Dtpm-uclass.c98 if (!ops->send || !ops->recv) in tpm_xfer()
115 ret = ops->send(dev, sendbuf, send_size); in tpm_xfer()
/u-boot/doc/develop/driver-model/
A Dethernet.rst79 int (*send)(struct udevice *dev, void *packet, int length);
91 Only start, stop, send and recv are required, the rest are optional and are
94 The **start** function initialises the hardware and gets it ready for send/recv
102 The **send** function does what you think -- transmit the specified packet
104 will!) be reused for subsequent calls to send(), so it must be no longer
105 used when the send() function returns. The easiest way to achieve this is
109 Another way of consuming the buffer could be to copy the data to be send,
112 In any case you should leave the state such that the send function can be
150 ops->send()
284 dev->send = ape_send;
/u-boot/doc/device-tree-bindings/misc/misc/
A Dgdsys,io-endpoint.txt4 that allows interconnected gdsys devices to send and receive data over the
/u-boot/doc/usage/cmd/
A Dloads.rst57 The terminal emulation program picocom is invoked with *cat* as the send
62 picocom --send-cmd 'cat' --baud 115200 /dev/ttyUSB0
/u-boot/doc/android/
A Dfastboot-protocol.rst48 send the indicated amount of data. Short packets are always
80 Host: "download:00001234" request to send 0x1234 bytes of data
84 Host: < 0x1234 bytes > send data
94 Host: "powerdown" send a command
/u-boot/doc/device-tree-bindings/sound/
A Dintel-hda.txt11 - beep-verbs: list of verbs to send for a beep
/u-boot/drivers/mailbox/
A Dapple-mbox.c65 .send = apple_mbox_send,
A Dsandbox-mbox.c93 .send = sandbox_mbox_send,
/u-boot/doc/device-tree-bindings/mailbox/
A Dk3-secure-proxy.txt6 has different address space that can be used to send or receive messages.
/u-boot/drivers/dma/
A Ddma-uclass.c191 if (!ops->send) in dma_send()
194 return ops->send(dma, src, len, metadata); in dma_send()

Completed in 18 milliseconds

12345678