| /sys/include/ |
| D | cv.h | 9 void CV_Init(CV *cv, const char *name);
|
| D | mutex.h | 16 void Mutex_Init(Mutex *mtx, const char *name);
|
| D | kdebug.h | 6 const char name[40]; member
|
| D | vfs.h | 43 int (*lookup)(VNode *dn, VNode **fn, const char *name);
|
| /lib/liblwip/src/netif/ |
| D | ethernetif.c | 300 netif->name[0] = IFNAME0; 301 netif->name[1] = IFNAME1;
|
| D | slipif.c | 331 netif->name[0] = 's'; in slipif_init() 332 netif->name[1] = 'l'; in slipif_init()
|
| /sys/fs/o2fs/ |
| D | o2fs.c | 21 int O2FS_Lookup(VNode *dn, VNode **fn, const char *name); 401 VLOG(o2fs, "%16s %08llx %08llx\n", entry->name, entry->objId.offset, entry->size); in O2FSDumpDirEntry() 416 O2FS_Lookup(VNode *dn, VNode **fn, const char *name) in O2FS_Lookup() argument 445 if (strcmp((char *)dir[e].name, name) == 0) { in O2FS_Lookup() 673 strcpy(de.d_name, (char *)dirEntry.name); in O2FS_ReadDir()
|
| D | o2fs.h | 109 uint8_t name[MAXNAMELEN+1]; // Null terminated member
|
| /lib/liblwip/src/core/ipv4/ |
| D | autoip.c | 262 (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num, in autoip_bind() 302 ("autoip_start(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], in autoip_start() 303 netif->name[1], (u16_t)netif->num)); in autoip_start()
|
| D | ip.c | 417 netif->name[0], netif->name[1])); 427 netif->name[0], netif->name[1])); 774 …LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c%"U16_F"\n", netif->name[0], netif->name[1], netif->num)…
|
| /lib/liblwip/src/arch/ |
| D | etherif.c | 344 netif->name[0] = IFNAME0; in ethernetif_init() 345 netif->name[1] = IFNAME1; in ethernetif_init()
|
| /lib/liblwip/src/api/ |
| D | sockets.c | 405 lwip_bind(int s, const struct sockaddr *name, socklen_t namelen) in lwip_bind() argument 420 ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)), in lwip_bind() 422 name_in = (const struct sockaddr_in *)(void*)name; in lwip_bind() 471 lwip_connect(int s, const struct sockaddr *name, socklen_t namelen) in lwip_connect() argument 484 ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)), in lwip_connect() 486 name_in = (const struct sockaddr_in *)(void*)name; in lwip_connect() 1408 lwip_getaddrname(int s, struct sockaddr *name, socklen_t *namelen, u8_t local) argument 1437 MEMCPY(name, &sin, *namelen); 1443 lwip_getpeername(int s, struct sockaddr *name, socklen_t *namelen) argument 1445 return lwip_getaddrname(s, name, namelen, 0); [all …]
|
| D | api_lib.c | 753 netconn_gethostbyname(const char *name, ip_addr_t *addr) in netconn_gethostbyname() argument 759 LWIP_ERROR("netconn_gethostbyname: invalid name", (name != NULL), return ERR_ARG;); in netconn_gethostbyname() 767 msg.name = name; in netconn_gethostbyname()
|
| /sys/kern/ |
| D | debug.c | 182 kprintf("%-16s %s\n", cmds[i].name, cmds[i].description); in Debug_Help() 290 if (strcmp(argv[0], cmds[i].name) == 0) in Debug_Prompt()
|
| /lib/liblwip/src/core/ |
| D | dhcp.c | 201 (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num)); in dhcp_handle_nak() 230 …(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_check(netif=%p) %c%c\n", (void *)netif, (s16_t)netif->name[0], in dhcp_check() 231 (s16_t)netif->name[1])); in dhcp_check() 256 (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num)); in dhcp_handle_offer() 289 …CE, ("dhcp_select(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)… in dhcp_select() 636 …ATE, ("dhcp_start(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)… in dhcp_start() 935 …RACE, ("dhcp_bind(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)… in dhcp_bind()
|
| /sys/amd64/ |
| D | disasm.c | 1101 const char * name; in db_disasm_esc() local 1147 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; in db_disasm_esc() 1148 kprintf("%s\t%%st,%%st(%d)",name,f_rm(rex, regmodrm)); in db_disasm_esc() 1151 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; in db_disasm_esc() 1152 kprintf("%s\t%%st(%d),%%st",name, f_rm(rex, regmodrm)); in db_disasm_esc() 1155 name = (fp->f_rrname) ? fp->f_rrname : fp->f_name; in db_disasm_esc() 1156 kprintf("%s\t%%st(%d)",name, f_rm(rex, regmodrm)); in db_disasm_esc() 1159 name = ((const char * const *)fp->f_rrname)[f_rm(rex, regmodrm)]; in db_disasm_esc() 1160 if (*name == '\0') in db_disasm_esc() 1162 kprintf("%s", name); in db_disasm_esc() [all …]
|
| /lib/liblwip/src/include/lwip/ |
| D | api_msg.h | 137 const char *name; member
|
| D | sys.h | 224 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int …
|
| /docs/ |
| D | Doxyfile | 41 # project for which the documentation is generated. This name is used in the 139 # following values are used ($name is automatically replaced with the name of 140 # the entity):The $name class, The $name widget, The $name file, is, provides, 143 ABBREVIATE_BRIEF = "The $name class" \ 144 "The $name widget" \ 145 "The $name file" \ 171 # before files name in the file list and in the header files. If set to NO the 172 # shortest path that makes the file name unique will be used 191 # header file to include in order to use a class. If left blank only the name of 273 # name=value [all …]
|
| /lib/liblwip/src/core/ipv6/ |
| D | ip6.c | 301 …LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c (len %"U16_F")\n", netif->name[0], netif->name[1], p->t… in ip_output_if()
|
| /sbin/newfs_o2fs/ |
| D | newfs_o2fs.c | 186 strncpy((char *)entries[entry].name, tokenString, MAXNAMELEN); in AddDirectory() 195 strncpy((char *)entries[entry].name, tokenString, MAXNAMELEN); in AddDirectory()
|
| /lib/liblwip/ |
| D | COPYING | 13 * 3. The name of the author may not be used to endorse or promote products
|
| /lib/liblwip/doc/ |
| D | sys_arch.txt | 80 Notice that lwIP implements a function with a similar name, 137 Note that a function with a similar name, sys_mbox_fetch(), is 171 - sys_thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, int stacksize, int… 173 Starts a new thread named "name" with priority "prio" that will begin its
|
| /sys/dev/ |
| D | e1000.c | 20 const char *name; member 183 kprintf("E1000: Found %s\n", deviceList[deviceIdx].name); in E1000_Init()
|
| D | ahci.c | 22 const char *name; member 212 kprintf("AHCI: Found %s\n", deviceList[deviceIdx].name); in AHCI_Init()
|