reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
425 sout.name = &strings[sin->n_strx]; 426 sout.type = (NListType)(sin->n_type & N_TYPE); 427 sout.scope = (sin->n_type & (N_PEXT|N_EXT)); 428 sout.sect = sin->n_sect; 429 sout.desc = sin->n_desc; 430 sout.value = sin->n_value; 431 if (sout.type == N_UNDF) 432 f->undefinedSymbols.push_back(sout); 433 else if (sout.scope == (SymbolScope)N_EXT) 434 f->globalSymbols.push_back(sout); 436 f->stabsSymbols.push_back(sout); 438 f->localSymbols.push_back(sout);