Lines Matching refs:aProgress
960 FmSearchProgress aProgress; in PropagateProgress() local
963 aProgress.aSearchState = FmSearchProgress::STATE_PROGRESS; in PropagateProgress()
964 aProgress.nCurrentRecord = m_xSearchCursor.getRow() - 1; in PropagateProgress()
966 aProgress.bOverflow = !_bDontPropagateOverflow && m_xSearchCursor.isFirst(); in PropagateProgress()
968 aProgress.bOverflow = !_bDontPropagateOverflow && m_xSearchCursor.isLast(); in PropagateProgress()
975 m_aProgressHandler.Call(&aProgress); in PropagateProgress()
1087 FmSearchProgress aProgress; variable
1093 aProgress.aSearchState = FmSearchProgress::STATE_ERROR;
1096 aProgress.aSearchState = FmSearchProgress::STATE_SUCCESSFULL;
1097 aProgress.aBookmark = m_aPreviousLocBookmark;
1098 aProgress.nFieldIndex = m_iterPreviousLocField - m_arrUsedFields.begin();
1101 aProgress.aSearchState = FmSearchProgress::STATE_NOTHINGFOUND;
1102 aProgress.aBookmark = m_xSearchCursor.getBookmark();
1105 aProgress.aSearchState = FmSearchProgress::STATE_CANCELED;
1106 aProgress.aBookmark = m_xSearchCursor.getBookmark();
1109 aProgress.nCurrentRecord = m_xSearchCursor.getRow() - 1;
1117 m_aProgressHandler.Call(&aProgress);
1129 FmSearchProgress aProgress; in IMPL_LINK() local
1130 aProgress.nCurrentRecord = (sal_uIntPtr)pCounterAsVoid; in IMPL_LINK()
1131 aProgress.aSearchState = FmSearchProgress::STATE_PROGRESS_COUNTING; in IMPL_LINK()
1132 m_aProgressHandler.Call(&aProgress); in IMPL_LINK()