Searched refs:node (Results  1 – 10 of 10) sorted by relevance
| /sys/kern/ | 
| D | sysctl.c | 16     void	*node;  member 58 SysCtl_GetType(const char *node)  in SysCtl_GetType()  argument 60     int i = SysCtl_Lookup(node);  in SysCtl_GetType() 69 SysCtl_GetObject(const char *node)  in SysCtl_GetObject()  argument 71     int i = SysCtl_Lookup(node);  in SysCtl_GetObject() 76     return SYSCTLTable[i].node;  in SysCtl_GetObject() 80 SysCtl_SetObject(const char *node, void *obj)  in SysCtl_SetObject()  argument 82     int i = SysCtl_Lookup(node);  in SysCtl_SetObject() 94 	    SysCtlString *val = (SysCtlString *)SYSCTLTable[i].node;  in SysCtl_SetObject() 98 	    SysCtlInt *val = (SysCtlInt *)SYSCTLTable[i].node;  in SysCtl_SetObject() [all …] 
 | 
| D | syscall.c | 577     char node[64];  in Syscall_SysCtl()  local 579     status = Copy_StrIn(user_node, &node, sizeof(node));  in Syscall_SysCtl() 584     uint64_t scType = SysCtl_GetType(node);  in Syscall_SysCtl() 592 		SysCtlString *scStr = SysCtl_GetObject(node);  in Syscall_SysCtl() 597 		SysCtlInt *scInt = SysCtl_GetObject(node);  in Syscall_SysCtl() 602 		SysCtlBool *scBool = SysCtl_GetObject(node);  in Syscall_SysCtl() 624 		status = SysCtl_SetObject(node, (void *)&scStr);  in Syscall_SysCtl() 633 		status = SysCtl_SetObject(node, (void *)&scInt);  in Syscall_SysCtl() 642 		status = SysCtl_SetObject(node, (void *)&scBool);  in Syscall_SysCtl()
  | 
| /sbin/newfs_o2fs/ | 
| D | newfs_o2fs.c | 130     BNode node;  in AddFile()  local 133     memset(&node, 0, sizeof(node));  in AddFile() 134     memcpy(node.magic, BNODE_MAGIC, 8);  in AddFile() 135     node.versionMajor = O2FS_VERSION_MAJOR;  in AddFile() 136     node.versionMinor = O2FS_VERSION_MINOR;  in AddFile() 154 	node.direct[i].device = 0;  in AddFile() 155 	node.direct[i].offset = AppendBlock(tempbuf, len);  in AddFile() 156 	node.size += (uint64_t)len;  in AddFile() 162     uint64_t offset = AppendBlock(&node, sizeof(node));  in AddFile() 177     BNode node;  in AddDirectory()  local [all …] 
 | 
| /lib/liblwip/src/core/snmp/ | 
| D | mib_structs.c | 64 push_node(struct nse* node)  in push_node()  argument 67   LWIP_DEBUGF(SNMP_MIB_DEBUG,("push_node() node=%p id=%"S32_F"\n",(void*)(node->r_ptr),node->r_id));  in push_node() 70     node_stack[node_stack_cnt] = *node;  in push_node() 79 pop_node(struct nse* node)  in pop_node()  argument 84     *node = node_stack[node_stack_cnt];  in pop_node() 86   LWIP_DEBUGF(SNMP_MIB_DEBUG,("pop_node() node=%p id=%"S32_F"\n",(void *)(node->r_ptr),node->r_id));  in pop_node() 452 snmp_search_tree(struct mib_node *node, u8_t ident_len, s32_t *ident, struct snmp_name_ptr *np)  in snmp_search_tree()  argument 457   LWIP_DEBUGF(SNMP_MIB_DEBUG,("node==%p *ident==%"S32_F"\n",(void*)node,*ident));  in snmp_search_tree() 458   while (node != NULL)  in snmp_search_tree() 460     node_type = node->node_type;  in snmp_search_tree() [all …] 
 | 
| /sys/include/ | 
| D | sysctl.h | 68 uint64_t SysCtl_GetType(const char *node); 69 void *SysCtl_GetObject(const char *node); 70 uint64_t SysCtl_SetObject(const char *node, void *obj);
  | 
| /lib/libc/ | 
| D | syscall.c | 155 OSSysCtl(const char *node, void *oldvar, void *newvar)  in OSSysCtl()  argument 157     return syscall(SYSCALL_SYSCTL, node, oldvar, newvar);  in OSSysCtl()
  | 
| /include/ | 
| D | syscall.h | 45 int OSSysCtl(const char *node, void *oldval, void *newval);
  | 
| /lib/liblwip/src/include/lwip/ | 
| D | snmp_structs.h | 257 struct mib_node* snmp_search_tree(struct mib_node *node, u8_t ident_len, s32_t *ident, struct snmp_… 258 struct mib_node* snmp_expand_tree(struct mib_node *node, u8_t ident_len, s32_t *ident, struct snmp_…
  | 
| /docs/ | 
| D | Doxyfile | 2509 # class node. If there are many fields or methods and many nodes the graph may 2689 # by representing a node as a red box. Note that doxygen if the number of direct 2690 # children of the root node in a graph is already larger than 2701 # further from the root node will be omitted. Note that setting this option to 1
  | 
| /lib/liblwip/ | 
| D | CHANGELOG | 887   * snmp: Renamed the private mib node from 'private' to 'mib_private' to
  |