Home
last modified time | relevance | path

Searched refs:bShow (Results 1 – 5 of 5) sorted by relevance

/src/crypto/krb5/src/windows/leash/
H A DLeashDebugWindow.cpp129 void CLeashDebugWindow::OnShowWindow(BOOL bShow, UINT nStatus) in OnShowWindow() argument
131 CDialog::OnShowWindow(bShow, nStatus); in OnShowWindow()
H A DLeashDebugWindow.h68 afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
H A DLeashView.h264 afx_msg VOID OnShowWindow(BOOL bShow, UINT nStatus);
H A DLeashView.cpp503 VOID CLeashView::OnShowWindow(BOOL bShow, UINT nStatus) in OnShowWindow() argument
505 CListView::OnShowWindow(bShow, nStatus); in OnShowWindow()
/src/contrib/sqlite3/
H A Dshell.c27052 unsigned char bShow[256]; /* Characters ok to display */ in shell_dbtotxt_command() local
27056 memset(bShow, '.', sizeof(bShow)); in shell_dbtotxt_command()
27058 if( i!='{' && i!='}' && i!='"' && i!='\\' ) bShow[i] = (unsigned char)i; in shell_dbtotxt_command()
27114 sqlite3_fprintf(p->out, "%c", bShow[c]); in shell_dbtotxt_command()