HomeSort by relevance Sort by last modified time
    Searched refs:CWnd (Results 1 - 25 of 30) sorted by null

1 2

  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
AboutDialog.h 37 AboutDialog(CWnd* pParent = NULL); // standard constructor
AboutDialog.cpp 43 AboutDialog::AboutDialog(CWnd* pParent /*=NULL*/)
LoginDialog.h 40 LoginDialog( CWnd *inParent = NULL );
LoginDialog.cpp 42 LoginDialog::LoginDialog( CWnd *inParent )
73 const CWnd * control;
ChooserDialog.h 64 ChooserDialog(CWnd* pParent = NULL);
113 afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
ChooserDialog.cpp 315 ChooserDialog::ChooserDialog( CWnd *inParent )
442 void ChooserDialog::OnActivate( UINT nState, CWnd* pWndOther, BOOL bMinimized )
817 CWnd * item;
844 item = (CWnd *) this->GetDlgItem( IDC_INFO_NAME_TEXT );
851 item = (CWnd *) this->GetDlgItem( IDC_INFO_IP_TEXT );
858 item = (CWnd *) this->GetDlgItem( IDC_INFO_INTERFACE_TEXT );
864 item = (CWnd *) this->GetDlgItem( IDC_INFO_HOST_NAME_TEXT );
871 item = (CWnd *) this->GetDlgItem( IDC_INFO_TEXT_TEXT );
    [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
SharedSecret.h 33 CSharedSecret(CWnd* pParent = NULL); // standard constructor
ControlPanel.cpp 104 CCPApplet::OnStartParms(CWnd * pParentWnd, LPCTSTR extra)
122 CCPApplet::OnRun(CWnd* pParentWnd)
125 CWnd * pWnd;
129 pWnd = (CWnd*) m_uiClass->CreateObject();
343 CWnd * pParentWnd = CWnd::FromHandle(hWndCPl);
351 CWnd* pParentWnd = CWnd::FromHandle(hWndCPl);
ControlPanel.h 37 virtual LRESULT OnRun(CWnd* pParentWnd);
38 virtual LRESULT OnStartParms(CWnd* pParentWnd, LPCTSTR lpszExtra);
BrowsingPage.h 127 CAddBrowseDomain(CWnd* pParent = NULL); // standard constructor
ServicesPage.h 101 CPowerManagementWarning(CWnd* pParent = NULL); // standard constructor
SharedSecret.cpp 40 CSharedSecret::CSharedSecret(CWnd* pParent /*=NULL*/)
ServicesPage.cpp 232 CPowerManagementWarning::CPowerManagementWarning(CWnd* pParent /*=NULL*/)
BrowsingPage.cpp 386 CAddBrowseDomain::CAddBrowseDomain(CWnd* pParent /*=NULL*/)
  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/
BrowserDialog.h 38 BrowserDialog( CWnd *inParent = NULL );
BrowserDialog.cpp 57 BrowserDialog::BrowserDialog( CWnd *inParent )
  /sdk/find_java2/src/
FindJava2Dlg.h 28 CFindJava2Dlg(CWnd* pParent = NULL); // standard constructor
FindJava2Dlg.cpp 31 CFindJava2Dlg::CFindJava2Dlg(CWnd* pParent /*=NULL*/)
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Input.c 76 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
90 // If this is a duplicated ACK, increse Cwnd by SMSS.
96 Tcb->CWnd += Tcb->SndMss;
114 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
125 // , then deflate the CWnd
131 // Deflate the CWnd by the amount of new data
133 // is ACKed, add back SMSS byte to CWnd after
140 Tcb->CWnd -= Acked;
1120 if (Tcb->CWnd < Tcb->Ssthresh) {
1122 Tcb->CWnd += Tcb->SndMss;
    [all...]
Tcp4Proto.h 233 UINT32 CWnd; ///< Sender's congestion window
Tcp4Timer.c 168 Tcb->CWnd = Tcb->SndMss;
Tcp4Output.c 200 // CWND.
205 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
207 Limit = Tcb->SndUna + Tcb->CWnd;
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpInput.c 74 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
92 // If this is a duplicated ACK, increse Cwnd by SMSS.
98 Tcb->CWnd += Tcb->SndMss;
120 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
135 // , then deflate the CWnd
141 // Deflate the CWnd by the amount of new data
143 // is ACKed, add back SMSS byte to CWnd after
150 Tcb->CWnd -= Acked;
1230 if (Tcb->CWnd < Tcb->Ssthresh) {
1232 Tcb->CWnd += Tcb->SndMss;
    [all...]
TcpProto.h 310 UINT32 CWnd; ///< Sender's congestion window.
TcpTimer.c 209 Tcb->CWnd = Tcb->SndMss;

Completed in 207 milliseconds

1 2