• Home
  • Raw
  • Download

Lines Matching refs:smiNode

1047 	SmiNode *smiNode = NULL;  in smi_print_variable()  local
1058 smiNode = smiGetNodeByOID(oidlen, oid); in smi_print_variable()
1059 if (! smiNode) { in smi_print_variable()
1064 ND_PRINT((ndo, "%s::", smiGetNodeModule(smiNode)->name)); in smi_print_variable()
1066 ND_PRINT((ndo, "%s", smiNode->name)); in smi_print_variable()
1067 if (smiNode->oidlen < oidlen) { in smi_print_variable()
1068 for (i = smiNode->oidlen; i < oidlen; i++) { in smi_print_variable()
1073 return smiNode; in smi_print_variable()
1078 SmiNode *smiNode, u_short pduid, struct be *elem) in smi_print_value() argument
1085 if (! smiNode || ! (smiNode->nodekind in smi_print_value()
1096 if (NOTIFY_CLASS(pduid) && smiNode->access < SMI_ACCESS_NOTIFY) { in smi_print_value()
1100 if (READ_CLASS(pduid) && smiNode->access < SMI_ACCESS_READ_ONLY) { in smi_print_value()
1104 if (WRITE_CLASS(pduid) && smiNode->access < SMI_ACCESS_READ_WRITE) { in smi_print_value()
1109 && smiNode->access == SMI_ACCESS_NOT_ACCESSIBLE) { in smi_print_value()
1113 smiType = smiGetNodeType(smiNode); in smi_print_value()
1143 smiNode = smiGetNodeByOID(oidlen, oid); in smi_print_value()
1144 if (smiNode) { in smi_print_value()
1146 ND_PRINT((ndo, "%s::", smiGetNodeModule(smiNode)->name)); in smi_print_value()
1148 ND_PRINT((ndo, "%s", smiNode->name)); in smi_print_value()
1149 if (smiNode->oidlen < oidlen) { in smi_print_value()
1150 for (i = smiNode->oidlen; in smi_print_value()
1228 SmiNode *smiNode = NULL; in varbind_print() local
1275 smiNode = smi_print_variable(ndo, &elem, &status); in varbind_print()
1301 status = smi_print_value(ndo, smiNode, pduid, &elem); in varbind_print()