Lines Matching refs:found
336 …PetscFileRetrieve(MPI_Comm comm, const char url[], char localname[], size_t llen, PetscBool *found) in PetscFileRetrieve() argument
347 *found = PETSC_FALSE; in PetscFileRetrieve()
363 PetscCall(PetscTestFile(url, 'r', found)); in PetscFileRetrieve()
364 if (*found) { in PetscFileRetrieve()
377 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve()
378 if (*found) goto done; in PetscFileRetrieve()
388 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve()
389 if (*found) goto done; in PetscFileRetrieve()
404 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve()
405 if (*found) { in PetscFileRetrieve()
423 PetscCall(PetscTestFile(url, 'r', found)); in PetscFileRetrieve()
424 if (!*found) goto done; in PetscFileRetrieve()
444 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve()
448 PetscCallMPI(MPI_Bcast(found, 1, MPI_C_BOOL, 0, comm)); in PetscFileRetrieve()