Home
last modified time | relevance | path

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

1234567

/u-boot/tools/patman/
A Dmain.py57 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 Dpatman57 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 DREADME26 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 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
A DREADME36 "kermit" script to send a U-Boot command and print the
/u-boot/lib/
A Dstring.c409 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 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
A Dtpm-common.h128 int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size); member
/u-boot/drivers/tpm/
A Dtpm-uclass.c82 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 Dgdsys,io-endpoint.txt4 that allows interconnected gdsys devices to send and receive data over the
/u-boot/doc/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/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 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.c188 if (!ops->send) in dma_send()
191 return ops->send(dma, src, len, metadata); in dma_send()
/u-boot/doc/
A DREADME.mpc74xx19 If you find any errors in the CPU setup code, please send us a note.
/u-boot/drivers/net/octeontx2/
A Drvu_pf.c46 .send = nix_lf_xmit,
/u-boot/net/
A Deth-uclass.c360 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 Devent_channel.h235 struct evtchn_send send; member

Completed in 16 milliseconds

1234567