Home
last modified time | relevance | path

Searched refs:pathDef (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libfru/libfru/
H A DnameSyntaxYacc.y57 PathDef *pathDef; member
65 %type <pathDef> recordpath element
129 PathDef *pathDef = new PathDef; variable
130 pathDef->def = (fru_regdef_t *)def;
131 pathDef->iterIndex = 0;
132 pathDef->next = NULL;
134 $$ = pathDef;
162 PathDef *pathDef = new PathDef; variable
163 pathDef->def = (fru_regdef_t *)def;
164 pathDef->iterIndex = $3;
[all …]
H A Dlibfru.cc1415 PathDef **pathDef, in get_payload() argument
1446 *pathDef = NULL; in get_payload()
1466 &abs_path_flg, pathDef); in get_payload()
1474 delete pathDef; in get_payload()
1481 delete *pathDef; in get_payload()
1487 *pathDef, *ancestors, correct, tagInstance)) in get_payload()
1494 delete *pathDef; in get_payload()
1506 delete *pathDef; in get_payload()
1519 delete *pathDef; in get_payload()
1556 PathDef **pathDef, in get_seg_and_payload() argument
[all …]
H A DParser.cc50 int *absolute, PathDef **pathDef) in fru_field_parser() argument
97 *pathDef = gParserHead; in fru_field_parser()
H A DParser.h59 int *absolute, PathDef **pathDef);
H A DPayloadReader.cc32 #define IS_ITERATED(pathDef) \ argument
33 (pathDef->def->iterationType != FRU_NOT_ITERATED)