Home
last modified time | relevance | path

Searched refs:numInstances (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libfru/libfru/
H A DAncestor.cc39 numInstances(0), in Ancestor()
53 for (int i = 0; i < numInstances; i++) { in ~Ancestor()
84 if (numInstances >= ANCESTOR_INST_BUF_SIZE) { in addInstance()
93 offsets[numInstances] = offset; in addInstance()
94 paths[numInstances++] = strdup(path); in addInstance()
118 return (numInstances); in getNumInstances()
124 if (num < numInstances) in getInstOffset()
127 return (offsets[numInstances]); in getInstOffset()
133 if (num < numInstances) in getPath()
136 return (paths[numInstances]); in getPath()
H A DAncestor.h74 int numInstances; member