HomeSort by relevance Sort by last modified time
    Searched refs:nLine (Results 1 - 24 of 24) sorted by null

  /packages/apps/OMA-DM/engine/dmlib/portlib/lj/src/
xpl_Memory.cc 12 void * xplAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
21 void xplFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
dmMemory.cc 46 void* DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
74 bufsize,szFile, nLine));
89 ppStr[1] = (CPCHAR)nLine;
95 bufsize, ptr, szFile, nLine));
100 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
136 (void*) (bufptr + c_nMemPrefix), szFile, nLine));
188 void * DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
197 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
  /packages/apps/OMA-DM/engine/xpl/src/
xpl_Memory.cc 12 void * xplAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
21 void xplFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
dmMemory.cc 10 void* DmtMemAllocEx( size_t nSize, CPCHAR szFile, INT32 nLine )
12 return DmAllocMemEx( nSize, szFile, nLine );
60 void* DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
88 bufsize,szFile, nLine));
104 ppStr[1] = (CPCHAR)nLine;
110 bufsize, ptr, szFile, nLine));
115 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
151 (void*) (bufptr + c_nMemPrefix), szFile, nLine));
203 void * DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine )
214 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine)
    [all...]
  /packages/apps/OMA-DM/engine/xpl/hdr/
xpl_Memory.h 51 void * xplAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine );
54 void xplFreeMemEx(void *ptr, CPCHAR szFile, int nLine);
dmMemory.h 16 void * DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine );
17 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine);
dmvector.h 60 * \param nLine [in] - line number
65 extern "C" void* DmtMemAllocEx( size_t nSize, const char* szFile, int nLine );
  /packages/apps/OMA-DM/engine/dmlib/portlib/generic/
dmMemory.h 16 void * DmAllocMemEx(UINT32 bufsize, CPCHAR szFile, int nLine );
17 void DmFreeMemEx(void *ptr, CPCHAR szFile, int nLine);
  /hardware/ti/omap4-aah/security/tf_daemon/
lib_manifest2.c 39 #define LOG_ERROR(pContext, msg, ...) log_error("%s - line %d: " msg, pContext->pManifestName, pContext->nLine, __VA_ARGS__)
60 pContext->nLine = 1;
185 pContext->nLine++;
190 pContext->nLine++;
475 pContext->nLine++;
484 pContext->nLine++;
540 uint32_t nLine;
561 nLine = pContext->nLine;
603 pContext->nLine = nLine
    [all...]
lib_manifest2.h 71 uint32_t nLine;
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 39 #define LOG_ERROR(pContext, msg, ...) log_error("%s - line %d: " msg, pContext->pManifestName, pContext->nLine, __VA_ARGS__)
60 pContext->nLine = 1;
185 pContext->nLine++;
190 pContext->nLine++;
475 pContext->nLine++;
484 pContext->nLine++;
540 uint32_t nLine;
561 nLine = pContext->nLine;
603 pContext->nLine = nLine
    [all...]
lib_manifest2.h 71 uint32_t nLine;
  /packages/apps/OMA-DM/engine/jni/
DMServiceMain.cc 51 int nLine = size > 16 ? 16 : size;
58 for (int i = 0; i < nLine; i++) {
61 for (int i = nLine; i < 16; i++) {
66 for (int i = 0; i < nLine; i++) {
71 buf += nLine;
72 size -= nLine;
73 nOffset += nLine;
  /external/sqlite/dist/orig/
shell.c 373 int nLine = zLine==0 ? 0 : 100;
377 if( n+100>nLine ){
378 nLine = nLine*2 + 100;
379 zLine = realloc(zLine, nLine);
382 if( fgets(&zLine[n], nLine - n, in)==0 ){
    [all...]
  /external/sqlite/dist/
shell.c 378 int nLine = zLine==0 ? 0 : 100;
382 if( n+100>nLine ){
383 nLine = nLine*2 + 100;
384 zLine = realloc(zLine, nLine);
387 if( fgets(&zLine[n], nLine - n, in)==0 ){
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPostConfig.h 266 int nLine,
273 int nLine,
  /external/chromium_org/third_party/sqlite/src/src/
shell.c 323 int nLine;
331 nLine = 100;
332 zLine = malloc( nLine );
337 if( n+100>nLine ){
338 nLine = nLine*2 + 100;
339 zLine = realloc(zLine, nLine);
342 if( fgets(&zLine[n], nLine - n, in)==0 ){
    [all...]
tclsqlite.c 948 int nLine;
952 nLine = 100;
953 zLine = malloc( nLine );
958 if( n+100>nLine ){
959 nLine = nLine*2 + 100;
960 zLine = realloc(zLine, nLine);
963 if( fgets(&zLine[n], nLine - n, in)==0 ){
    [all...]
  /external/skia/include/core/
SkPostConfig.h 266 int nLine,
273 int nLine,
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmt.cc 521 void* DmtMemAllocEx( size_t nSize, CPCHAR szFile, INT32 nLine )
523 return DmAllocMemEx( nSize, szFile, nLine );
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/unittest/src/
dmt_test.cc 1067 int nLine = size > 16 ? 16: size;
1074 for ( int i = 0; i < nLine; i++ ){
1077 for ( int i = nLine; i < 16; i++ ){
1082 for ( int i = 0; i < nLine; i++ ){
1087 buf += nLine;
1088 size -= nLine;
1089 nOffset += nLine;
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/api/native/
dmvector.h 59 * \param nLine [in] - line number
64 extern "C" void* DmtMemAllocEx( size_t nSize, const char* szFile, int nLine );
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msxml2.h     [all...]

Completed in 2479 milliseconds