Lines Matching refs:smiNode

1041 	SmiNode *smiNode = NULL;  in smi_print_variable()  local
1052 smiNode = smiGetNodeByOID(oidlen, oid); in smi_print_variable()
1053 if (! smiNode) { in smi_print_variable()
1058 ND_PRINT("%s::", smiGetNodeModule(smiNode)->name); in smi_print_variable()
1060 ND_PRINT("%s", smiNode->name); in smi_print_variable()
1061 if (smiNode->oidlen < oidlen) { in smi_print_variable()
1062 for (i = smiNode->oidlen; i < oidlen; i++) { in smi_print_variable()
1067 return smiNode; in smi_print_variable()
1072 SmiNode *smiNode, u_short pduid, struct be *elem) in smi_print_value() argument
1079 if (! smiNode || ! (smiNode->nodekind in smi_print_value()
1090 if (NOTIFY_CLASS(pduid) && smiNode->access < SMI_ACCESS_NOTIFY) { in smi_print_value()
1094 if (READ_CLASS(pduid) && smiNode->access < SMI_ACCESS_READ_ONLY) { in smi_print_value()
1098 if (WRITE_CLASS(pduid) && smiNode->access < SMI_ACCESS_READ_WRITE) { in smi_print_value()
1103 && smiNode->access == SMI_ACCESS_NOT_ACCESSIBLE) { in smi_print_value()
1107 smiType = smiGetNodeType(smiNode); in smi_print_value()
1137 smiNode = smiGetNodeByOID(oidlen, oid); in smi_print_value()
1138 if (smiNode) { in smi_print_value()
1140 ND_PRINT("%s::", smiGetNodeModule(smiNode)->name); in smi_print_value()
1142 ND_PRINT("%s", smiNode->name); in smi_print_value()
1143 if (smiNode->oidlen < oidlen) { in smi_print_value()
1144 for (i = smiNode->oidlen; in smi_print_value()
1222 SmiNode *smiNode = NULL; in varbind_print() local
1269 smiNode = smi_print_variable(ndo, &elem, &status); in varbind_print()
1295 status = smi_print_value(ndo, smiNode, pduid, &elem); in varbind_print()