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

  /packages/apps/OMA-DM/engine/dmlib/portlib/lj/src/
dmThreadHelper.cc 36 int nRes = pthread_create( &m_hThread, 0, ThreadProc, (void*)this );
38 if ( nRes != 0 )
40 XPL_LOG_DM_TMN_Debug(("DMThread: can't create a thread; error %d \n", nRes));
  /packages/apps/OMA-DM/engine/xpl/src/
dmThreadHelper.cc 28 int nRes = pthread_create( &m_hThread, 0, ThreadProc, (void*)this );
30 if ( nRes != 0 )
32 XPL_LOG_DM_TMN_Debug(("DMThread: can't create a thread; error %d \n", nRes));
  /packages/apps/OMA-DM/engine/dmlib/portlib/lj/hdr/
dmThreadHelper.h 36 //#define NRES int nRes=
37 #define NRES(foo) int nRes=(foo)
40 //#define NRES
41 #define NRES(foo) foo
139 NRES(pthread_mutex_init( &m_section, 0 ));
140 IMASSERT( nRes == 0 );
145 NRES(pthread_mutex_destroy( &m_section ));
146 IMASSERT( nRes == 0 );
    [all...]
  /packages/apps/OMA-DM/engine/xpl/hdr/
dmThreadHelper.h 28 //#define NRES int nRes=
29 #define NRES(foo) int nRes=(foo)
32 //#define NRES
33 #define NRES(foo) foo
131 NRES(pthread_mutex_init( &m_section, 0 ));
132 IMASSERT( nRes == 0 );
137 NRES(pthread_mutex_destroy( &m_section ));
138 IMASSERT( nRes == 0 );
    [all...]
  /external/srec/seti/sltsEngine/src/
SWIslts.c 122 SWIsltsResult nRes = SWIsltsSuccess;
143 nRes = create_lts((char *)data_filename, &pEng->m_hLts);
144 if (nRes != SWIsltsSuccess) {
145 PLogError(L("create_lts with the model file (%s) fails with return code %d\n"), (char *)data_filename, nRes);
158 return nRes;
192 SWIsltsResult nRes = SWIsltsSuccess;
237 nRes = SWIsltsEmptyPhoneString;
242 nRes = run_lts(pEng->m_hLts, pEng->m_hDict, new_text, output_phone_string, output_phone_len);
243 if (nRes != SWIsltsSuccess) {
265 return nRes;
    [all...]
run_seq_lts.c 183 SWIsltsResult nRes = SWIsltsSuccess;
193 nRes = SWIsltsErrAllocResource;
200 nRes = SWIsltsErrAllocResource;
213 nRes = SWIsltsErrAllocResource;
230 return nRes;
236 SWIsltsResult nRes = SWIsltsSuccess;
250 return nRes;
255 SWIsltsResult nRes = SWIsltsSuccess;
263 nRes = SWIsltsErrAllocResource;
272 nRes = SWIsltsErrAllocResource
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
dmLock.cc 170 SYNCML_DM_RET_STATUS_T nRes = m_pFile->open(XPL_FS_FILE_RDWR);
172 if ( nRes != SYNCML_DM_SUCCESS )
175 return nRes;
198 SYNCML_DM_RET_STATUS_T nRes = SYNCML_DM_SUCCESS;
222 nRes = m_pFile->lock( TRUE );
224 nRes = m_pFile->lock( FALSE );
226 if ( nRes == SYNCML_DM_LOCK_TRY_AGAIN )
230 return nRes;
236 SYNCML_DM_RET_STATUS_T nRes = SYNCML_DM_SUCCESS;
240 nRes = m_pFile->unlock()
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 134 proc ResultSet {{nRes 0} {c ""}} {
135 if {$nRes == 0} {
136 set nRes [expr {rand()*2 + 1}]
140 for {set ii 0} {$ii < $nRes} {incr ii} {
149 proc SimpleSelect {{nRes 0}} {
152 {[SelectKw] [ResultSet $nRes]}
165 {[SelectKw] [ResultSet $nRes $::ColumnList] FROM ([Select])} \
166 {[SelectKw] [ResultSet $nRes] FROM ([Select])} \
167 {[SelectKw] [ResultSet $nRes $::ColumnList] FROM [Table]} \
169 [SelectKw] [ResultSet $nRes $::ColumnList]
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/bmdf_reader/
reader.cpp 83 int nRes = 0;
108 nRes = 7;
123 nRes = 7;
220 nRes = 7;
247 nRes = 7;
272 nRes = nResFromChildren;
274 return nRes;
  /external/chromium_org/third_party/sqlite/src/src/
vacuum.c 106 int nRes; /* Bytes of reserved space at the end of each page */
166 nRes = sqlite3BtreeGetReserve(pMain);
185 if( sqlite3BtreeSetPageSize(pTemp, sqlite3BtreeGetPageSize(pMain), nRes, 0)
186 || (!isMemDb && sqlite3BtreeSetPageSize(pTemp, db->nextPagesize, nRes, 0))
313 rc = sqlite3BtreeSetPageSize(pMain, sqlite3BtreeGetPageSize(pTemp), nRes,1);
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/unittest/src/
dmt_stress.cc 149 int nRes = pthread_create( &ids[i], 0, ThreadProc, (void*)i );
151 if ( nRes ){
152 printf( "Failed to create thread %d!\n", nRes);
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmstring.cc 11 int nRes = (nLen + DM_STR_ALIGN_BY - 1) / DM_STR_ALIGN_BY * DM_STR_ALIGN_BY;
12 return nRes;
  /external/srec/srec/Vocabulary/src/
VocabularyImpl.c 583 ESR_ReturnCode nRes = ESR_SUCCESS;
590 nRes = ESR_FATAL_ERROR;
629 return nRes;
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/src/
SyncML_DM_WBXMLReader.cc 708 SYNCML_DM_RET_STATUS_T nRes = readOpaqueTag(pByte, &nOldFormat,1);
727 if ( nRes == SYNCML_DM_SUCCESS && nOldFormat < DIM(aFormats) )
732 return nRes;
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ssession/src/
dm_ua_handlecommand.cc 305 SYNCML_DM_RET_STATUS_T nRes = SYNCML_DM_SUCCESS;
313 nRes = pDmBuildPackage->AllocateTndsResult(pStrTargetUri, p_get_ret_data, oGetStructData, &pcData);
314 if ( nRes == SYNCML_DM_SUCCESS )
321 nRes = pDmBuildPackage->AllocateResult( p_results, p_target_uri,
326 if ( nRes != SYNCML_DM_SUCCESS )
333 return nRes;
339 return nRes;
    [all...]
SYNCML_DM_BuildPackage.cc     [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/src/
dm_tree_class_public.cc     [all...]

Completed in 832 milliseconds