• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/src/

Lines Matching refs:memList

700                                         CSCmemListType   const memList,
727 CSCmemListType const memList,
734 ASSERT_RTN (memList != NULL, "CSCfileGetHomeDir: NULL memList", NULL);
736 if ((pathSize == 0) || (memList == NULL)) return (NULL);
738 if (CSCmemAlloc(memList,(void**)&homeDirPath,1,pathSize,memTag) == CSC_OK)
762 CSCmemListType const memList,
790 CSCmemListType const memList,
798 ASSERT_RTN (memList != NULL, "cscFileGetUserHomeDir: NULL memList", NULL);
800 if ((userName == NULL) || (pathSize == 0) || (memList == NULL))
805 if (CSCmemAlloc(memList,(void**)&userDirPath,1,pathSize,memTag) == CSC_OK)
828 CSCmemListType const memList,
839 CSCfileBaseName() returns NULL if `path' or `memList' argument is NULL.
854 CSCmemListType const memList,
862 ASSERT_RTN (memList != NULL, "CSCfileBaseName: NULL memList", NULL);
864 if ((path == NULL) || (memList == NULL)) return (NULL);
871 (void)CSCmemAlloc (memList,(void**)&namePtr,1,strlen(tempPtr)+1,memTag);
892 CSCmemListType const memList,
916 CSCmemListType const memList,
926 ASSERT_RTN (memList != NULL, "CSCfilePathName: NULL memList", NULL);
928 if ((path == NULL) || (memList == NULL)) return (NULL);
935 if (CSCmemAlloc(memList,(void**)&namePtr,1,strSz,memTag) == CSC_OK)
965 CSCmemListType const memList,
999 CSCmemListType const memList,
1010 ASSERT_RTN (memList != NULL, "CSCfileExpandPath: NULL memList", NULL);
1014 if ((path == NULL) || (pathMax == 0) || (memList == NULL)) return (NULL);
1016 if (CSCmemAlloc(memList,(void**)&dstPtr,1,pathMax+1,memTag) == CSC_OK)
1044 (void)CSCmemFree (memList, (void**)&dstPtr, memTag);
1069 CSCmemListType const memList,
1090 CSCmemListType const memList,
1101 ASSERT_RTN (memList != NULL, "CSCfileOpen: NULL memList", NULL);
1103 if ((path == NULL) || (pathMax == 0) || (memList == NULL)) return (NULL);
1105 fileName = CSCfileExpandPath (path, pathMax, memList, memTag);
1120 (void)CSCmemFree (memList, (void**)&fileName, memTag);
1129 (void)CSCmemFree (memList, (void**)&fileName, memTag);
1143 (void)CSCmemFree (memList, (void**)&fileName, memTag);