Lines Matching refs:id
99 static BOOL GetCompResult(const char* id, const char* comp, const char* value, BOOL* pvalid) in GetCompResult() argument
105 defval = SearchDefValCleaned(id); in GetCompResult()
118 debug_printf("id(%s)=[%s] comp=[%s] value=[%s] valid=%d\n", id, defval, comp, value, valid); in GetCompResult()
124 static BOOL CondIf(const char* id, const char* comp, const char* value) in CondIf() argument
139 if (!GetCompResult(id, comp, value, &cond_valid)) in CondIf()
185 static BOOL StoreToken( int id, const char *str ) in StoreToken() argument
195 tokenBuffer[tokenBufferEnd].id = id; in StoreToken()
201 static BOOL PushLoopStack( int id, const char* sectionName ) in PushLoopStack() argument
211 loop_stack[loop_stack_level].id = id; in PushLoopStack()
214 return StoreToken( id, sectionName ); in PushLoopStack()
217 static BOOL PopLoopStack( int id ) in PopLoopStack() argument
225 if ( loop_stack_level < 0 || id != loop_stack[loop_stack_level].id ) in PopLoopStack()