Home
last modified time | relevance | path

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

/petsc/src/sys/objects/
H A Doptions.c1799 char *coptions = NULL; in PetscOptionsGetAll() local
1813 PetscCall(PetscMalloc1(len, &coptions)); in PetscOptionsGetAll()
1814 coptions[0] = 0; in PetscOptionsGetAll()
1816 PetscCall(PetscStrlcat(coptions, "-", len)); in PetscOptionsGetAll()
1817 PetscCall(PetscStrlcat(coptions, options->names[i], len)); in PetscOptionsGetAll()
1818 PetscCall(PetscStrlcat(coptions, " ", len)); in PetscOptionsGetAll()
1820 PetscCall(PetscStrlcat(coptions, options->values[i], len)); in PetscOptionsGetAll()
1821 PetscCall(PetscStrlcat(coptions, " ", len)); in PetscOptionsGetAll()
1824 *copts = coptions; in PetscOptionsGetAll()