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

1 2 3 4

  /external/ltp/testcases/kernel/io/disktest/
globals.h 87 #define PDBG1 if (gbl_dbg_lvl > 0) pMsg
88 #define PDBG2 if (gbl_dbg_lvl > 1) pMsg
89 #define PDBG3 if (gbl_dbg_lvl > 2) pMsg
90 #define PDBG4 if (gbl_dbg_lvl > 3) pMsg
91 #define PDBG5 if (gbl_dbg_lvl > 4) pMsg
parse.c 62 pMsg(WARN, args, "Missing argument for perameter.\n");
68 pMsg(WARN, args,
73 pMsg(WARN, args,
79 pMsg(ERR, args,
91 pMsg(WARN, args,
96 pMsg(WARN, args,
104 pMsg(WARN, args,
143 pMsg(INFO, args, "Version %s\n", VER_STR);
147 pMsg(WARN, args,
152 pMsg(WARN, args
    [all...]
stats.c 179 pMsg(ERR, args, "Unknown stats display type.\n");
190 pMsg(STAT, args, HRTSTR,
195 pMsg(STAT, args, HWTSTR,
202 pMsg(STAT, args, CRTSTR,
207 pMsg(STAT, args, CWTSTR,
214 pMsg(STAT, args, TRTSTR,
219 pMsg(STAT, args, TWTSTR,
225 pMsg(ERR, args,
234 pMsg(STAT, args, HRTHSTR,
244 pMsg(STAT, args, HWTHSTR
    [all...]
main.c 89 pMsg(INFO, test->args,
93 pMsg(INFO, test->args,
98 pMsg(INFO, test->args, "Starting write pass\n");
128 pMsg(INFO, test->args,
132 pMsg(INFO, test->args,
137 pMsg(INFO, test->args, "Starting read pass\n");
157 pMsg(ERR, test->args,
164 pMsg(ERR, test->args,
171 pMsg(ERR, test->args,
200 pMsg(ERR, test->args
    [all...]
sfunc.h 86 * Added level code pMsg.
96 * to pMsg.
121 int pMsg(lvl_t level, const child_args_t *, char *Msg,...);
threading.c 161 pMsg(ERR, test->args,
172 pMsg(ERR, test->args,
175 pMsg(INFO, test->args,
191 pMsg(ERR, test->args, "%d : Could not create child thread...\n",
  /external/pdfium/xfa/fwl/
cfwl_pushbutton.h 42 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
43 void OnLButtonDown(CFWL_MessageMouse* pMsg);
44 void OnLButtonUp(CFWL_MessageMouse* pMsg);
45 void OnMouseMove(CFWL_MessageMouse* pMsg);
46 void OnMouseLeave(CFWL_MessageMouse* pMsg);
47 void OnKeyDown(CFWL_MessageKey* pMsg);
cfwl_combolist.h 33 void OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet);
34 void OnDropListMouseMove(CFWL_MessageMouse* pMsg);
35 void OnDropListLButtonDown(CFWL_MessageMouse* pMsg);
36 void OnDropListLButtonUp(CFWL_MessageMouse* pMsg);
cfwl_comboboxproxy.cpp 36 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
37 switch (pMsg->m_dwCmd) {
39 OnLButtonDown(pMsg);
42 OnLButtonUp(pMsg);
73 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
74 if (CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos)) {
98 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
99 if (!CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos) &&
109 CFWL_MessageKillFocus* pMsg = static_cast<CFWL_MessageKillFocus*>(pMessage);
110 if (!pMsg->m_pSetFocus
    [all...]
cfwl_comboboxproxy.h 32 void OnLButtonDown(CFWL_Message* pMsg);
33 void OnLButtonUp(CFWL_Message* pMsg);
34 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
cfwl_combolist.cpp 83 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
87 if (rect.Contains(pMsg->m_pos)) {
88 pMsg->m_pos -= rect.TopLeft();
89 vertSB->GetDelegate()->OnProcessMessage(pMsg);
93 switch (pMsg->m_dwCmd) {
96 OnDropListMouseMove(pMsg);
101 OnDropListLButtonDown(pMsg);
106 OnDropListLButtonUp(pMsg);
119 void CFWL_ComboList::OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet) {
123 CFWL_MessageKillFocus* pKill = static_cast<CFWL_MessageKillFocus*>(pMsg);
    [all...]
cfwl_spinbutton.h 55 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
56 void OnLButtonDown(CFWL_MessageMouse* pMsg);
57 void OnLButtonUp(CFWL_MessageMouse* pMsg);
58 void OnMouseMove(CFWL_MessageMouse* pMsg);
59 void OnMouseLeave(CFWL_MessageMouse* pMsg);
60 void OnKeyDown(CFWL_MessageKey* pMsg);
cfwl_notedriver.h 59 bool DoSetFocus(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
60 bool DoKillFocus(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
61 bool DoKey(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
62 bool DoMouse(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
63 bool DoWheel(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
64 bool DoMouseEx(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
65 void MouseSecondary(CFWL_Message* pMsg);
cfwl_notedriver.cpp 296 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage);
298 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown &&
299 pMsg->m_dwKeyCode == FWL_VKEY_Tab) {
301 CFWL_Widget* pForm = GetMessageForm(pMsg->m_pDstTarget);
321 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown &&
322 pMsg->m_dwKeyCode == FWL_VKEY_Return) {
326 pMsg->m_pDstTarget = defButton;
332 pMsg->m_pDstTarget = m_pFocus;
338 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
339 if (pMsg->m_dwCmd == FWL_MouseCommand::Leave |
    [all...]
cfwl_pushbutton.cpp 116 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
117 switch (pMsg->m_dwCmd) {
119 OnLButtonDown(pMsg);
122 OnLButtonUp(pMsg);
125 OnMouseMove(pMsg);
128 OnMouseLeave(pMsg);
152 void CFWL_PushButton::OnFocusChanged(CFWL_Message* pMsg, bool bSet) {
161 void CFWL_PushButton::OnLButtonDown(CFWL_MessageMouse* pMsg) {
171 void CFWL_PushButton::OnLButtonUp(CFWL_MessageMouse* pMsg) {
173 if (m_rtClient.Contains(pMsg->m_pos))
    [all...]
cfwl_spinbutton.cpp 154 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
155 switch (pMsg->m_dwCmd) {
157 OnLButtonDown(pMsg);
160 OnLButtonUp(pMsg);
163 OnMouseMove(pMsg);
166 OnMouseLeave(pMsg);
190 void CFWL_SpinButton::OnFocusChanged(CFWL_Message* pMsg, bool bSet) {
199 void CFWL_SpinButton::OnLButtonDown(CFWL_MessageMouse* pMsg) {
204 bool bUpPress = m_rtUpButton.Contains(pMsg->m_pos) && IsUpButtonEnabled();
205 bool bDnPress = m_rtDnButton.Contains(pMsg->m_pos) && IsDownButtonEnabled()
    [all...]
cfwl_combobox.h 121 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
122 void OnLButtonDown(CFWL_MessageMouse* pMsg);
123 void OnLButtonUp(CFWL_MessageMouse* pMsg);
124 void OnMouseMove(CFWL_MessageMouse* pMsg);
125 void OnMouseLeave(CFWL_MessageMouse* pMsg);
126 void OnKey(CFWL_MessageKey* pMsg);
127 void DoSubCtrlKey(CFWL_MessageKey* pMsg);
143 void DisForm_OnLButtonDown(CFWL_MessageMouse* pMsg);
144 void DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet);
145 void DisForm_OnKey(CFWL_MessageKey* pMsg);
    [all...]
cfwl_datetimepicker.h 79 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
80 void OnLButtonDown(CFWL_MessageMouse* pMsg);
81 void OnLButtonUp(CFWL_MessageMouse* pMsg);
82 void OnMouseMove(CFWL_MessageMouse* pMsg);
83 void OnMouseLeave(CFWL_MessageMouse* pMsg);
92 void DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet);
cfwl_checkbox.h 60 void OnLButtonUp(CFWL_MessageMouse* pMsg);
61 void OnMouseMove(CFWL_MessageMouse* pMsg);
63 void OnKeyDown(CFWL_MessageKey* pMsg);
cfwl_checkbox.cpp 237 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
238 switch (pMsg->m_dwCmd) {
243 OnLButtonUp(pMsg);
246 OnMouseMove(pMsg);
295 void CFWL_CheckBox::OnLButtonUp(CFWL_MessageMouse* pMsg) {
300 if (!m_rtClient.Contains(pMsg->m_pos))
308 void CFWL_CheckBox::OnMouseMove(CFWL_MessageMouse* pMsg) {
314 if (m_rtClient.Contains(pMsg->m_pos)) {
334 if (m_rtClient.Contains(pMsg->m_pos)) {
354 void CFWL_CheckBox::OnKeyDown(CFWL_MessageKey* pMsg) {
    [all...]
cfwl_combobox.cpp 715 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
716 switch (pMsg->m_dwCmd) {
718 OnLButtonDown(pMsg);
721 OnLButtonUp(pMsg);
724 OnMouseMove(pMsg);
727 OnMouseLeave(pMsg);
763 void CFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) {
766 if (IsDropDownStyle() && pMsg->m_pSrcTarget != m_pListBox.get()) {
778 if (!IsDropDownStyle() || pMsg->m_pDstTarget == m_pListBox.get()) {
789 void CFWL_ComboBox::OnLButtonDown(CFWL_MessageMouse* pMsg) {
    [all...]
cfwl_comboedit.cpp 62 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
63 if ((pMsg->m_dwCmd == FWL_MouseCommand::LeftButtonDown) &&
cfwl_edit.h 147 void DoButtonDown(CFWL_MessageMouse* pMsg);
148 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
149 void OnLButtonDown(CFWL_MessageMouse* pMsg);
150 void OnLButtonUp(CFWL_MessageMouse* pMsg);
151 void OnButtonDblClk(CFWL_MessageMouse* pMsg);
152 void OnMouseMove(CFWL_MessageMouse* pMsg);
153 void OnKeyDown(CFWL_MessageKey* pMsg);
154 void OnChar(CFWL_MessageKey* pMsg);
cfwl_form.h 59 void OnLButtonDown(CFWL_MessageMouse* pMsg);
60 void OnLButtonUp(CFWL_MessageMouse* pMsg);
cfwl_listbox.h 110 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
111 void OnLButtonDown(CFWL_MessageMouse* pMsg);
112 void OnLButtonUp(CFWL_MessageMouse* pMsg);
113 void OnMouseWheel(CFWL_MessageMouseWheel* pMsg);
114 void OnKeyDown(CFWL_MessageKey* pMsg);

Completed in 1223 milliseconds

1 2 3 4