| /u-boot/tools/patman/ |
| A D | main.py | 57 send = subparsers.add_parser('send') variable 58 send.add_argument('-i', '--ignore-errors', action='store_true', 63 send.add_argument('-m', '--no-maintainers', action='store_false', 66 send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run', 68 send.add_argument('-r', '--in-reply-to', type=str, action='store', 70 send.add_argument('-t', '--ignore-bad-tags', action='store_true', 72 send.add_argument('-T', '--thread', action='store_true', dest='thread', 74 send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store', 86 send.add_argument('--smtp-server', type=str, 89 send.add_argument('patchfiles', nargs='*') [all …]
|
| A D | patman | 57 send = subparsers.add_parser('send') variable 58 send.add_argument('-i', '--ignore-errors', action='store_true', 63 send.add_argument('-m', '--no-maintainers', action='store_false', 66 send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run', 68 send.add_argument('-r', '--in-reply-to', type=str, action='store', 70 send.add_argument('-t', '--ignore-bad-tags', action='store_true', 72 send.add_argument('-T', '--thread', action='store_true', dest='thread', 74 send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store', 86 send.add_argument('--smtp-server', type=str, 89 send.add_argument('patchfiles', nargs='*') [all …]
|
| A D | README | 26 git format-patch, git send-email, etc. with the correct parameters 66 out where to send patches pretty well. 173 Email address / alias to send patch series to (you can add this 235 the commit messages, but do want to send, The notes are joined 259 you send out the next version. If 'Tested-by:' is set to 296 Cc: used by git send-email is ignored by patman, but will be 297 interpreted by git send-email if you use it. 418 commit, and type 'patman' to check and send them. 486 Now to send the patches, take off the -n flag: 556 so to send them: [all …]
|
| /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
|
| A D | README | 36 "kermit" script to send a U-Boot command and print the
|
| /u-boot/lib/ |
| A D | string.c | 409 char *sbegin, *send; in strtok() local 420 send = strpbrk( sbegin, ct); in strtok() 421 if (send && *send != '\0') in strtok() 422 *send++ = '\0'; in strtok() 423 ___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
|
| A D | tpm-common.h | 128 int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size); member
|
| /u-boot/drivers/tpm/ |
| A D | tpm-uclass.c | 82 if (!ops->send || !ops->recv) in tpm_xfer() 99 ret = ops->send(dev, sendbuf, send_size); in tpm_xfer()
|
| /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/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/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 | 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 | 188 if (!ops->send) in dma_send() 191 return ops->send(dma, src, len, metadata); in dma_send()
|
| /u-boot/doc/ |
| A D | README.mpc74xx | 19 If you find any errors in the CPU setup code, please send us a note.
|
| /u-boot/drivers/net/octeontx2/ |
| A D | rvu_pf.c | 46 .send = nix_lf_xmit,
|
| /u-boot/net/ |
| A D | eth-uclass.c | 360 ret = eth_get_ops(current)->send(current, packet, length); in eth_send() 523 if (ops->send) in eth_post_probe() 524 ops->send += gd->reloc_off; in eth_post_probe()
|
| /u-boot/include/xen/interface/ |
| A D | event_channel.h | 235 struct evtchn_send send; member
|