| /u-boot/tools/patman/ |
| A D | __main__.py | 61 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 D | patman | 61 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 D | test_settings.py | 47 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 D | README.rst | 164 ./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 D | patman.rst | 164 ./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 D | ten64_controller.c | 100 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 D | mbox.c | 17 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 D | send_image | 14 set send pack 1000 22 send \%1
|
| A D | send_cmd | 12 set send pack 1000
|
| A D | dot.kermrc | 10 set send pack 1000
|
| A D | flash_param | 17 set send pack 1000
|
| /u-boot/lib/ |
| A D | string.c | 440 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 D | mailbox-uclass.h | 67 int (*send)(struct mbox_chan *chan, const void *data); member
|
| A D | dma-uclass.h | 110 int (*send)(struct dma *dma, void *src, size_t len, void *metadata); member
|
| /u-boot/doc/develop/ |
| A D | patman.rst | 164 ./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 D | tpm-uclass.c | 98 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 D | ethernet.rst | 79 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 D | gdsys,io-endpoint.txt | 4 that allows interconnected gdsys devices to send and receive data over the
|
| /u-boot/doc/usage/cmd/ |
| A D | loads.rst | 57 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 D | fastboot-protocol.rst | 48 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 D | intel-hda.txt | 11 - beep-verbs: list of verbs to send for a beep
|
| /u-boot/drivers/mailbox/ |
| A D | apple-mbox.c | 65 .send = apple_mbox_send,
|
| A D | sandbox-mbox.c | 93 .send = sandbox_mbox_send,
|
| /u-boot/doc/device-tree-bindings/mailbox/ |
| A D | k3-secure-proxy.txt | 6 has different address space that can be used to send or receive messages.
|
| /u-boot/drivers/dma/ |
| A D | dma-uclass.c | 191 if (!ops->send) in dma_send() 194 return ops->send(dma, src, len, metadata); in dma_send()
|