Home
last modified time | relevance | path

Searched refs:nFrame (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/tools/lldb-mi/
HDMICmdCmdStack.cpp707 MIuint64 nFrame = UINT64_MAX; in Execute() local
710 if (!pArgFrame->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nFrame)) in Execute()
733 …lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) : thread.GetSelected… in Execute()
872 MIuint64 nFrame = UINT64_MAX; in Execute() local
875 if (!pArgFrame->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nFrame)) in Execute()
898 …lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) : thread.GetSelected… in Execute()
HDMICmdCmdVar.cpp131 MIuint64 nFrame = UINT64_MAX; in Execute() local
132 … if (pArgThread->GetFound() && !pArgFrame->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nFrame)) in Execute()
143 nFrame = pOption->GetValue(); in Execute()
165 if (!bCurrentFrame && (nFrame == UINT64_MAX)) in Execute()
180 … lldb::SBFrame frame = bCurrentFrame ? thread.GetSelectedFrame() : thread.GetFrameAtIndex(nFrame); in Execute()
HDMICmnLLDBDebuggerHandleEvents.cpp1196 const MIuint nFrame = thread.GetNumFrames(); in MiHelpGetCurrentThreadFrame() local
1197 if (nFrame == 0) in MiHelpGetCurrentThreadFrame()
1272 const MIuint nFrame = thread.GetNumFrames(); in MiStoppedAtBreakPoint() local
1273 if (nFrame == 0) in MiStoppedAtBreakPoint()
1359 const MIuint nFrame = thread.GetNumFrames(); in HandleProcessEventStopReasonTrace() local
1360 if (nFrame == 0) in HandleProcessEventStopReasonTrace()
HDMICmdCmdData.cpp598 MIuint64 nFrame = UINT64_MAX; in Execute() local
599 … if (pArgFrame->GetFound() && !pArgFrame->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nFrame)) in Execute()
631 lldb::SBFrame frame = (nFrame != UINT64_MAX) ? in Execute()
632 thread.GetFrameAtIndex(nFrame) : thread.GetSelectedFrame(); in Execute()
/NextBSD/contrib/sqlite3/
HDsqlite3.c14978 int nFrame; /* Number of frames in pFrame list */ member
67786 p->nFrame = 0;
67788 assert( p->nFrame==0 );
73019 p->nFrame--;
77563 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
77621 p->nFrame++;
131324 int nFrame /* Size of WAL */
131326 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
131346 SQLITE_API int SQLITE_STDCALL sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
131349 UNUSED_PARAMETER(nFrame);
[all …]
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c12870 int nFrame; /* Number of frames in pFrame list */ member
59929 p->nFrame = 0;
64357 p->nFrame--;
68717 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
68769 p->nFrame++;
111480 int nFrame /* Size of WAL */
111482 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
111502 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
111505 UNUSED_PARAMETER(nFrame);
111507 if( nFrame>0 ){
[all …]