Lines Matching refs:Oinfo

281       Option_Info* Oinfo = (Option_Info*) Oinfo_ptr_;  in ~AmplTNLP()  local
282 delete [] Oinfo->sname; in ~AmplTNLP()
283 delete [] Oinfo->bsname; in ~AmplTNLP()
284 delete [] Oinfo->opname; in ~AmplTNLP()
285 delete Oinfo; in ~AmplTNLP()
1426 Option_Info* Oinfo = new Option_Info; in get_options() local
1427 Oinfo->sname = new char[strlen(sname)+1]; in get_options()
1428 strcpy(Oinfo->sname, sname); in get_options()
1429 Oinfo->bsname = new char[strlen(bsname)+1]; in get_options()
1430 strcpy(Oinfo->bsname, bsname); in get_options()
1431 Oinfo->opname = new char[strlen(opname)+1]; in get_options()
1432 strcpy(Oinfo->opname, opname); in get_options()
1433 Oinfo->keywds = keywds; in get_options()
1434 Oinfo->n_keywds = n_options; in get_options()
1436 Oinfo->flags = 0; in get_options()
1437 Oinfo->version = NULL; in get_options()
1438 Oinfo->usage = NULL; in get_options()
1439 Oinfo->kwf = NULL; in get_options()
1440 Oinfo->feq = NULL; in get_options()
1441 Oinfo->options = NULL; in get_options()
1442 Oinfo->n_options = 0; in get_options()
1443 Oinfo->driver_date = 0; in get_options()
1444 Oinfo->wantsol = 0; in get_options()
1445 Oinfo->nS = 0; in get_options()
1446 Oinfo->S = NULL; in get_options()
1447 Oinfo->uinfo = NULL; in get_options()
1448 Oinfo->asl = NULL; in get_options()
1449 Oinfo->eqsign = NULL; in get_options()
1450 Oinfo->n_badopts = 0; in get_options()
1451 Oinfo->option_echo = 0; in get_options()
1452 Oinfo->nnl = 0; in get_options()
1454 Oinfo_ptr_ = Oinfo; in get_options()
1456 char* stub = getstops(argv, Oinfo); in get_options()