Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libfru/libfru/
H A DnameSyntaxYacc.y52 PathDef *pathDef; member
60 %type <pathDef> recordpath element
124 PathDef *pathDef = new PathDef; variable
125 pathDef->def = (fru_regdef_t *)def;
126 pathDef->iterIndex = 0;
127 pathDef->next = NULL;
129 $$ = pathDef;
157 PathDef *pathDef = new PathDef; variable
158 pathDef->def = (fru_regdef_t *)def;
159 pathDef->iterIndex = $3;
[all …]
H A Dlibfru.cc1417 PathDef **pathDef, in get_payload() argument
1448 *pathDef = NULL; in get_payload()
1468 &abs_path_flg, pathDef); in get_payload()
1476 delete pathDef; in get_payload()
1483 delete *pathDef; in get_payload()
1489 *pathDef, *ancestors, correct, tagInstance)) in get_payload()
1496 delete *pathDef; in get_payload()
1508 delete *pathDef; in get_payload()
1521 delete *pathDef; in get_payload()
1558 PathDef **pathDef, in get_seg_and_payload() argument
[all …]
H A DParser.cc52 int *absolute, PathDef **pathDef) in fru_field_parser() argument
99 *pathDef = gParserHead; in fru_field_parser()
H A DParser.h61 int *absolute, PathDef **pathDef);
H A DPayloadReader.cc34 #define IS_ITERATED(pathDef) \ argument
35 (pathDef->def->iterationType != FRU_NOT_ITERATED)