Sun May 20 03:55:38 MDT 2012The following is the list of the implemented ESMF C public subroutines and functions. Below each is the path(s) to the test that calls the subroutine or function. Those without test paths have not been tested. ESMC_ArrayCreate src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: array = ESMC_ArrayCreate(arrayspec, distgrid, "array1", &rc); src/Superstructure/State/tests/ESMC_StateUTest.C: array = ESMC_ArrayCreate(arrayspec, distgrid, "array1", &rc); ESMC_ArrayDestroy src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: rc = ESMC_ArrayDestroy(&array); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_ArrayDestroy(&array); ESMC_ArrayGetName src/Superstructure/State/tests/ESMC_StateUTest.C: arrayName = ESMC_ArrayGetName(array,&rc); ESMC_ArrayGetPtr src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: ptr = (double *)ESMC_ArrayGetPtr(retrievedArray, 0, rc); src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: ptr = (double *)ESMC_ArrayGetPtr(retrievedArray, 0, rc); ESMC_ArrayPrint src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: rc = ESMC_ArrayPrint(array); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_ArrayPrint(array); ESMC_ArraySpecGet src/Infrastructure/ArraySpec/tests/ESMC_ArraySpecUTest.C: rc = ESMC_ArraySpecGet(arrayspec, &rank_out, &typekind_out); ESMC_ArraySpecSet src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_ArraySpecSet(&arrayspec, 3, ESMC_TYPEKIND_I4); src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: rc = ESMC_ArraySpecSet(&arrayspec, 2, ESMC_TYPEKIND_I4); src/Infrastructure/ArraySpec/tests/ESMC_ArraySpecUTest.C: rc = ESMC_ArraySpecSet(&arrayspec, rank, typekind); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_ArraySpecSet(&arrayspec, 3, ESMC_TYPEKIND_I4); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_ArraySpecSet(&arrayspec, 2, ESMC_TYPEKIND_I4); ESMC_CalendarCreate src/Infrastructure/TimeMgr/tests/ESMC_CalendarUTest.C: calendar = ESMC_CalendarCreate("Gregorian", ESMC_CAL_GREGORIAN, &rc); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: calendar = ESMC_CalendarCreate("Gregorian", ESMC_CAL_GREGORIAN, &rc); src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: calendar = ESMC_CalendarCreate("Gregorian", ESMC_CAL_GREGORIAN, &rc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: calendar = ESMC_CalendarCreate("Gregorian", ESMC_CAL_GREGORIAN, &rc); src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: gregorianCalendar = ESMC_CalendarCreate(9, "Gregorian", ESMC_CalendarDestroy src/Infrastructure/TimeMgr/tests/ESMC_CalendarUTest.C: rc = ESMC_CalendarDestroy(&calendar); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_CalendarDestroy(&calendar); src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: rc = ESMC_CalendarDestroy(&calendar); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CalendarDestroy(&calendar); src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: rc = ESMC_CalendarDestroy(&gregorianCalendar); ESMC_CalendarPrint src/Infrastructure/TimeMgr/tests/ESMC_CalendarUTest.C: rc = ESMC_CalendarPrint(calendar); src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: rc = ESMC_CalendarPrint(calendar); ESMC_ClockAdvance src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockAdvance(clock); src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: rc = clock->ESMC_ClockAdvance(); ESMC_ClockCreate src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: clock = ESMC_ClockCreate("TEST_CLOCK", timeStep, startTime, stopTime, &rc); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: clock_ptr = ESMC_ClockCreate(args, &rc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: clock = ESMC_ClockCreate("TEST_CLOCK",timeStep,startTime, stopTime, src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: clock = ESMC_ClockCreate(7, "Clock 1", &timeStep, &startTime, &stopTime, ESMC_ClockDestroy src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockDestroy(&clock); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockDestroy(clock_ptr); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_ClockDestroy(&clock); src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: rc = ESMC_ClockDestroy(&clock); ESMC_ClockGet src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockGet(clock, &currSimTime, &advanceCount); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockGet(clock, &currSimTime, &advanceCount1); src/Infrastructure/TimeMgr/examples/ESMC_ClockEx.C: rc = clock->ESMC_ClockGet(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ESMC_ClockPrint src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_ClockPrint(*clock); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_ClockPrint(clock); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = clock_ptr->ESMC_ClockPrint(print_options); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_ClockPrint(*clock); ESMC_ConfigCreate src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: cf = ESMC_ConfigCreate(&rc); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: cf = ESMC_ConfigCreate(&rc); ESMC_ConfigDestroy src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigDestroy(&cf); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigDestroy(cf); ESMC_ConfigFindLabel src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigFindLabel(cf, label); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigFindLabel(cf, "constants:"); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigFindLabel(cf, "my_file_names:"); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigFindLabel(cf, "my_table_name::"); ESMC_ConfigGetDim src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigGetDim (cf, &linecount, &colcount, ESMC_ArgLast); ESMC_ConfigGetLen src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigGetLen(cf, wordCountp, ESMC_ArgLast); ESMC_ConfigLoadFile src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigLoadFile(cf, fileName2, ESMC_ArgLast); src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigLoadFile(cf, fileName2, ESMCI_ConfigArgUniqueID, unique, src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigLoadFile(cf, fileName, ESMCI_ConfigArgUniqueID, unique, src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigLoadFile(cf, fname, ESMC_ArgLast); ESMC_ConfigNextLine src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigNextLine(cf, &tableEnd); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_ConfigNextLine(cf, ESMC_ArgLast); ESMC_ConfigValidate src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_ConfigValidate (cf, ESMC_ArgLast); ESMC_CplCompCreate src/Superstructure/Component/tests/ESMC_ComponentUTest.C: cplcomp = ESMC_CplCompCreate("coupler component in C", "grid.rc", clock, &rc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: cplcomp = ESMC_CplCompCreate("coupler component in C w/ Fortran registration", ESMC_CplCompDestroy src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompDestroy(&cplcomp); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompDestroy(&cplcomp); ESMC_CplCompFinalize src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompFinalize() w/ myCplRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompFinalize(cplcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompFinalize() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompFinalize(cplcomp, importState, exportState, clock, 1, NULL); ESMC_CplCompGetInternalState src/Superstructure/Component/tests/ESMC_ComponentUTest.C: int *data = (int *)ESMC_CplCompGetInternalState(cplcomp, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: int *data = (int *)ESMC_CplCompGetInternalState(cplcomp, NULL); ESMC_CplCompInitialize src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompInitialize() w/ myCplRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompInitialize(cplcomp, importState, exportState, clock, 1, src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompInitialize() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompInitialize(cplcomp, importState, exportState, clock, 1, ESMC_CplCompPrint src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_CplCompPrint(cplcomp); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompPrint(cplcomp); ESMC_CplCompRun src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompRun() w/ myCplRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompRun(cplcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompRun() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompRun(cplcomp, importState, exportState, clock, 1, NULL); ESMC_CplCompSetEntryPoint src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_CplCompSetEntryPoint(cplcomp, ESMF_SETINIT, myCplInitInC, 1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_CplCompSetEntryPoint(cplcomp, ESMF_SETRUN, myCplRunInC, 1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_CplCompSetEntryPoint(cplcomp, ESMF_SETFINAL, myCplFinalInC, 1); ESMC_CplCompSetInternalState src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_CplCompSetInternalState(cplcomp, data); ESMC_CplCompSetServices src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompSetServices() using myCplRegistrationInC()"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompSetServices(cplcomp, myCplRegistrationInC, &userRc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_CplCompSetServices() using my_RegistrationInFortran()"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_CplCompSetServices(cplcomp, FTN(my_cplregistrationinfortran), ESMC_DistGridCreate src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: distgrid = ESMC_DistGridCreate(minIndex, maxIndex, &rc); src/Infrastructure/DistGrid/tests/ESMC_DistGridUTest.C: distgrid = ESMC_DistGridCreate(minIndex, maxIndex, &rc); src/Superstructure/State/tests/ESMC_StateUTest.C: distgrid = ESMC_DistGridCreate(minIndex, maxIndex, &rc); ESMC_DistGridDestroy src/Infrastructure/Array/tests/ESMC_ArrayUTest.C: rc = ESMC_DistGridDestroy(&distgrid); src/Infrastructure/DistGrid/tests/ESMC_DistGridUTest.C: rc = ESMC_DistGridDestroy(&distgrid); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_DistGridDestroy(&distgrid); ESMC_DistGridPrint src/Infrastructure/DistGrid/tests/ESMC_DistGridUTest.C: rc = ESMC_DistGridPrint(distgrid); src/Infrastructure/DistGrid/tests/ESMC_DistGridUTest.C: rc = ESMC_DistGridPrint(distgrid); ESMC_FieldCreate src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: field = ESMC_FieldCreate(mesh, arrayspec, i_gridToFieldMap, i_ungriddedLBound, src/Infrastructure/Field/tests/ESMC_FieldUTest.C: field = ESMC_FieldCreate(mesh, arrayspec, i_gridToFieldMap, i_ungriddedLBound, ESMC_FieldDestroy src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_FieldDestroy(&field); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_FieldDestroy(&field); ESMC_FieldGetArray src/Infrastructure/Field/tests/ESMC_FieldUTest.C: array = ESMC_FieldGetArray(field, &rc); ESMC_FieldGetMesh src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: mesh = ESMC_FieldGetMesh(field, rc); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: mesh1 = ESMC_FieldGetMesh(field, &rc); ESMC_FieldGetPtr src/Infrastructure/Field/tests/ESMC_FieldUTest.C: void * ptr = ESMC_FieldGetPtr(field, 0, &rc); ESMC_FieldPrint src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_FieldPrint(field); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_FieldPrint(field); ESMC_Finalize src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_Finalize(); ESMC_GridCompCreate src/Superstructure/Component/tests/ESMC_ComponentUTest.C: gcomp = ESMC_GridCompCreate("gridded component in C", ESMF_ATM, "grid.rc", src/Superstructure/Component/tests/ESMC_ComponentUTest.C: gcomp = ESMC_GridCompCreate("gridded Component in C w/ Fortran registration", ESMC_GridCompDestroy src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompDestroy(&gcomp); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompDestroy(&gcomp); ESMC_GridCompFinalize src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompFinalize() w/ myRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompFinalize(gcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompFinalize() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompFinalize(gcomp, importState, exportState, clock, 1, NULL); ESMC_GridCompGetInternalState src/Superstructure/Component/tests/ESMC_ComponentUTest.C: int *data = (int *)ESMC_GridCompGetInternalState(gcomp, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: int *data = (int *)ESMC_GridCompGetInternalState(gcomp, NULL); ESMC_GridCompInitialize src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompInitialize() before calling" src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompInitialize(gcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompInitialize() w/ myRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompInitialize(gcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompInitialize() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompInitialize(gcomp, importState, exportState, clock, 1, NULL); ESMC_GridCompPrint src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_GridCompPrint(gcomp); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_GridCompPrint(gcomp); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompPrint(gcomp); ESMC_GridCompRun src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompRun() w/ myRegistrationInC() methods"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompRun(gcomp, importState, exportState, clock, 1, NULL); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompRun() w/ my_RegistrationInFortran() meths"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompRun(gcomp, importState, exportState, clock, 1, NULL); ESMC_GridCompSetEntryPoint src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETINIT, myInitInC, 1); src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETRUN, myRunInC, 1); src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETFINAL, myFinalInC, 1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETINIT, myInitInC, 1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETRUN, myRunInC, 1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_GridCompSetEntryPoint(gcomp, ESMF_SETFINAL, myFinalInC, 1); ESMC_GridCompSetInternalState src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_GridCompSetInternalState(gcomp, data); ESMC_GridCompSetServices src/Superstructure/Component/tests/ESMC_ComponentUTest.C: "ESMC_GridCompSetServices()"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompSetServices() using myRegistrationInC()"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompSetServices(gcomp, myRegistrationInC, &userRc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: strcpy(name, "ESMC_GridCompSetServices() using my_RegistrationInFortran()"); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_GridCompSetServices(gcomp, FTN(my_registrationinfortran), &userRc); ESMC_Initialize src/Infrastructure/Config/tests/ESMC_ConfigUTest.C: rc = ESMC_Initialize(NULL, ESMC_ArgLast); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: rc = ESMC_Initialize(NULL, ESMC_ArgLast); ESMC_LogWrite src/Infrastructure/LogErr/tests/ESMC_LogErrUTest.C: trueFalseRc = ESMC_LogWrite(msg, msgtype); ESMC_MeshAddElements src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_MeshAddElements(mesh, num_elem, elemId, elemType, elemConn); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_MeshAddElements(mesh, num_elem, elemId, elemType, elemConn); src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshAddElements(mesh, num_elem, elemId, elemType, elemConn); ESMC_MeshAddNodes src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_MeshAddNodes(mesh, num_node, nodeId, nodeCoord, nodeOwner); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_MeshAddNodes(mesh, num_node, nodeId, nodeCoord, nodeOwner); src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshAddNodes(mesh, num_node, nodeId, nodeCoord, nodeOwner); ESMC_MeshCreate src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: mesh = ESMC_MeshCreate(pdim, sdim, rc); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: mesh = ESMC_MeshCreate(pdim,sdim,&rc); src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: mesh = ESMC_MeshCreate(pdim,sdim,&rc); ESMC_MeshDestroy src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_MeshDestroy(&mesh); src/Infrastructure/Field/tests/ESMC_FieldUTest.C: rc = ESMC_MeshDestroy(&mesh1); src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshDestroy(&mesh); ESMC_MeshFreeMemory src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshFreeMemory(mesh); ESMC_MeshGetLocalElementCount src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshGetLocalElementCount(mesh, &num_elements); ESMC_MeshGetLocalNodeCount src/Infrastructure/Mesh/tests/ESMC_MeshUTest.C: rc = ESMC_MeshGetLocalNodeCount(mesh, &num_nodes); ESMC_StateAddArray src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_StateAddArray(myState,array); ESMC_StateAddField src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_StateAddField(exportState, field); ESMC_StateCreate src/Superstructure/Component/tests/ESMC_ComponentUTest.C: importState = ESMC_StateCreate("my import state", &rc); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: exportState = ESMC_StateCreate("my export state", &rc); src/Superstructure/State/tests/ESMC_StateUTest.C: myState = ESMC_StateCreate("name",&rc); ESMC_StateDestroy src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_StateDestroy(&importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_StateDestroy(&exportState); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_StateDestroy(&myState); ESMC_StateGetArray src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc=ESMC_StateGetArray(importState, "array1", &retrievedArray); src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc=ESMC_StateGetArray(importState, "array1", &retrievedArray); src/Superstructure/State/tests/ESMC_StateUTest.C: rc = ESMC_StateGetArray(myState, "array1", &retrievedArray); ESMC_StateGetField src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_StateGetField(exportState, "Field from C", &field); ESMC_StatePrint src/system_tests/ESMF_CompFortranAndC/user_CComponent.C: *rc = ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: ESMC_StatePrint(importState); ESMC_TimeGet src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: rc = ESMC_TimeGet(time1, &yy, &h, &calendarOut, &calType, &tZ); ESMC_TimeIntervalGet src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_TimeIntervalGet(currSimTime, &currSec1, &currHour1); src/Infrastructure/TimeMgr/tests/ESMC_TimeIntervalUTest.C: rc = ESMC_TimeIntervalGet(timeInterval1, &s_I8, &h_R8); ESMC_TimeIntervalPrint src/Infrastructure/TimeMgr/tests/ESMC_TimeIntervalUTest.C: rc = ESMC_TimeIntervalPrint(timeInterval1); ESMC_TimeIntervalSet src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_TimeIntervalSet(&timeStep, one); src/Infrastructure/TimeMgr/tests/ESMC_TimeIntervalUTest.C: rc = ESMC_TimeIntervalSet(&timeInterval1, h1_I4); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_TimeIntervalSet(&timeStep, one); ESMC_TimePrint src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: rc = ESMC_TimePrint(time1); ESMC_TimeSet src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_TimeSet(&startTime, yy1, h1, calendar, calType1, tZ1); src/Infrastructure/TimeMgr/tests/ESMC_ClockUTest.C: rc = ESMC_TimeSet(&stopTime, yy1, h2, calendar, calType1, tZ1); src/Infrastructure/TimeMgr/tests/ESMC_TimeUTest.C: rc = ESMC_TimeSet(&time1, yy1, h1, calendar, calType1, tZ1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_TimeSet(&startTime, yy1, h1, calendar, calType1, tZ1); src/Superstructure/Component/tests/ESMC_ComponentUTest.C: rc = ESMC_TimeSet(&stopTime, yy1, h2, calendar, calType1, tZ1); ESMC_VMGet src/Infrastructure/VM/tests/ESMC_VMUTest.C: rc = ESMC_VMGet(vm, &localPet, &petCount, &peCount, &mpiCommunicator, ESMC_VMGetCurrent src/Infrastructure/VM/tests/ESMC_VMUTest.C: vmCurrent = ESMC_VMGetCurrent(&rc); ESMC_VMGetGlobal src/Infrastructure/VM/tests/ESMC_VMUTest.C: vm = ESMC_VMGetGlobal(&rc); src/Infrastructure/Config/examples/ESMC_ConfigOverviewEx.C: vm = ESMC_VMGetGlobal(&rc); ESMC_VMPrint src/Infrastructure/VM/tests/ESMC_VMUTest.C: rc = ESMC_VMPrint(vm);