/lib/liblwip/src/api/ |
D | netbuf.c | 58 struct netbuf *buf; in netbuf_new() local 87 netbuf_delete(struct netbuf *buf) in netbuf_delete() 107 netbuf_alloc(struct netbuf *buf, u16_t size) in netbuf_alloc() 131 netbuf_free(struct netbuf *buf) in netbuf_free() 150 netbuf_ref(struct netbuf *buf, const void *dataptr, u16_t size) in netbuf_ref() 193 netbuf_data(struct netbuf *buf, void **dataptr, u16_t *len) in netbuf_data() 218 netbuf_next(struct netbuf *buf) in netbuf_next() 239 netbuf_first(struct netbuf *buf) in netbuf_first()
|
D | api_lib.c | 344 void *buf = NULL; in netconn_recv_data() local 457 struct netbuf *buf = NULL; in netconn_recv() local 549 netconn_sendto(struct netconn *conn, struct netbuf *buf, ip_addr_t *addr, u16_t port) in netconn_sendto() 567 netconn_send(struct netconn *conn, struct netbuf *buf) in netconn_send()
|
/lib/liblwip/src/include/lwip/ |
D | netbuf.h | 79 #define netbuf_copy_partial(buf, dataptr, len, offset) \ argument 81 #define netbuf_copy(buf,dataptr,len) netbuf_copy_partial(buf, dataptr, len, 0) argument 82 #define netbuf_take(buf, dataptr, len) pbuf_take((buf)->p, dataptr, len) argument 83 #define netbuf_len(buf) ((buf)->p->tot_len) argument 84 #define netbuf_fromaddr(buf) (&((buf)->addr)) argument 85 #define netbuf_set_fromaddr(buf, fromaddr) ip_addr_set((&(buf)->addr), fromaddr) argument 86 #define netbuf_fromport(buf) ((buf)->port) argument 88 #define netbuf_destaddr(buf) (&((buf)->toaddr)) argument 89 #define netbuf_set_destaddr(buf, destaddr) ip_addr_set((&(buf)->addr), destaddr) argument 90 #define netbuf_destport(buf) (((buf)->flags & NETBUF_FLAG_DESTADDR) ? (buf)->toport_chksum … argument [all …]
|
/sys/dev/x86/ |
D | ioport.h | 59 static __inline__ void insb(int port,void *buf,int cnt) in insb() 66 static __inline__ void insw(int port,void *buf,int cnt) in insw() 73 static __inline__ void insl(int port,void *buf,int cnt) in insl() 80 static __inline__ void outsb(int port,const void *buf,int cnt) in outsb() 87 static __inline__ void outsw(int port,const void *buf,int cnt) in outsw() 94 static __inline__ void outsl(int port,const void *buf,int cnt) in outsl()
|
D | ide.c | 271 IDE_Read(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in IDE_Read() 293 IDE_Write(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in IDE_Write() 315 IDE_Flush(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in IDE_Flush() 340 IDE_ReadOne(IDEDrive *drive, void *buf, uint64_t off, uint64_t len) in IDE_ReadOne() 414 IDE_WriteOne(IDEDrive *drive, void *buf, uint64_t off, uint64_t len) in IDE_WriteOne()
|
/sys/kern/ |
D | disk.c | 44 Disk_Read(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in Disk_Read() 50 Disk_Write(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in Disk_Write() 56 Disk_Flush(Disk *disk, void *buf, SGArray *sga, DiskCB cb, void *arg) in Disk_Flush() 79 char buf[512]; in Debug_DumpDisk() local
|
D | vfs.c | 180 VFS_Read(VNode *fn, void *buf, uint64_t off, uint64_t len) in VFS_Read() 198 VFS_Write(VNode *fn, void *buf, uint64_t off, uint64_t len) in VFS_Write() 216 VFS_ReadDir(VNode *fn, void *buf, uint64_t len, uint64_t *off) in VFS_ReadDir()
|
D | vfsuio.c | 16 VFSUIO_Read(Handle *handle, void *buf, uint64_t len, uint64_t off) in VFSUIO_Read() 26 VFSUIO_Write(Handle *handle, void *buf, uint64_t len, uint64_t off) in VFSUIO_Write()
|
D | malloc.c | 52 Malloc_Free(Heap *heap, void *buf) in Malloc_Free() 57 Malloc_Realloc(Heap *heap, void *buf, uint64_t newlen) in Malloc_Realloc()
|
D | bufcache.c | 232 void *buf; in BufCache_Read() local 275 void *buf = entry->buffer; in BufCache_Write() local
|
D | loader.c | 131 Loader_Load(Thread *thr, VNode *vn, void *buf, uint64_t len) in Loader_Load()
|
D | printf.c | 35 char buf[64]; in printnum() local
|
/bin/shell/ |
D | shell.c | 20 char buf[256]; in main() local 102 DispatchCommand(char *buf) in DispatchCommand()
|
/lib/libc/ |
D | time.c | 50 asctime_r(const struct tm *tm, char *buf) in asctime_r() 66 static char buf[26]; in asctime() local 71 ctime_r(const time_t *timep, char *buf) in ctime_r()
|
D | file.c | 110 fread(void *buf, size_t size, size_t nmemb, FILE *fh) in fread() 117 fwrite(const void *buf, size_t size, size_t nmemb, FILE *fh) in fwrite()
|
D | printf.c | 32 char buf[64]; in printnum() local 237 char *buf; member
|
/lib/liblwip/src/arch/ |
D | etherif.c | 138 char buf[1500]; in low_level_output() local 189 char buf[1500]; in low_level_input() local
|
/bin/cat/ |
D | cat.c | 18 char buf[256]; in main() local
|
/lib/liblwip/src/netif/ppp/ |
D | md5.h | 46 u32_t buf[4]; /* scratch buffer */ member
|
D | randm.c | 123 avGenRand(char *buf, u32_t bufLen) in avGenRand()
|
/sys/dev/ |
D | console.c | 151 Console_Read(Handle *handle, void *buf, uint64_t off, uint64_t len) in Console_Read() 167 Console_Write(Handle *handle, void *buf, uint64_t off, uint64_t len) in Console_Write()
|
/bin/ethinject/ |
D | ethinject.c | 12 static char buf[4096]; variable
|
/bin/ethdump/ |
D | ethdump.c | 10 static char buf[4096]; variable
|
/sbin/newfs_o2fs/ |
D | newfs_o2fs.c | 96 FlushBlock(uint64_t offset, const void *buf, size_t len) in FlushBlock() 109 AppendBlock(const void *buf, size_t len) in AppendBlock()
|
/sys/fs/o2fs/ |
D | o2fs.c | 512 O2FS_Read(VNode *fn, void *buf, uint64_t off, uint64_t len) in O2FS_Read() 578 O2FS_Write(VNode *fn, void *buf, uint64_t off, uint64_t len) in O2FS_Write() 646 O2FS_ReadDir(VNode *fn, void *buf, uint64_t len, uint64_t *off) in O2FS_ReadDir()
|