Home
last modified time | relevance | path

Searched refs:pMsg (Results 1 – 25 of 65) sorted by relevance

123

/external/ltp/testcases/kernel/io/disktest/
Dparse.c62 pMsg(WARN, args, "Missing argument for perameter.\n"); in fill_cld_args()
68 pMsg(WARN, args, in fill_cld_args()
73 pMsg(WARN, args, in fill_cld_args()
79 pMsg(ERR, args, in fill_cld_args()
91 pMsg(WARN, args, in fill_cld_args()
96 pMsg(WARN, args, in fill_cld_args()
104 pMsg(WARN, args, in fill_cld_args()
143 pMsg(INFO, args, "Version %s\n", VER_STR); in fill_cld_args()
147 pMsg(WARN, args, in fill_cld_args()
152 pMsg(WARN, args, in fill_cld_args()
[all …]
Dstats.c179 pMsg(ERR, args, "Unknown stats display type.\n"); in print_stats()
190 pMsg(STAT, args, HRTSTR, in print_stats()
195 pMsg(STAT, args, HWTSTR, in print_stats()
202 pMsg(STAT, args, CRTSTR, in print_stats()
207 pMsg(STAT, args, CWTSTR, in print_stats()
214 pMsg(STAT, args, TRTSTR, in print_stats()
219 pMsg(STAT, args, TWTSTR, in print_stats()
225 pMsg(ERR, args, in print_stats()
234 pMsg(STAT, args, HRTHSTR, in print_stats()
244 pMsg(STAT, args, HWTHSTR, in print_stats()
[all …]
Dmain.c89 pMsg(INFO, test->args, in linear_read_write_test()
93 pMsg(INFO, test->args, in linear_read_write_test()
98 pMsg(INFO, test->args, "Starting write pass\n"); in linear_read_write_test()
128 pMsg(INFO, test->args, in linear_read_write_test()
132 pMsg(INFO, test->args, in linear_read_write_test()
137 pMsg(INFO, test->args, "Starting read pass\n"); in linear_read_write_test()
157 pMsg(ERR, test->args, in init_data()
164 pMsg(ERR, test->args, in init_data()
171 pMsg(ERR, test->args, in init_data()
200 pMsg(ERR, test->args, in init_data()
[all …]
Dglobals.h87 #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
/external/pdfium/xfa/fwl/
Dcfwl_combolist.cpp83 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
87 if (rect.Contains(pMsg->m_pos)) { in OnProcessMessage()
88 pMsg->m_pos -= rect.TopLeft(); in OnProcessMessage()
89 vertSB->GetDelegate()->OnProcessMessage(pMsg); in OnProcessMessage()
93 switch (pMsg->m_dwCmd) { in OnProcessMessage()
96 OnDropListMouseMove(pMsg); in OnProcessMessage()
101 OnDropListLButtonDown(pMsg); in OnProcessMessage()
106 OnDropListLButtonUp(pMsg); in OnProcessMessage()
119 void CFWL_ComboList::OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnDropListFocusChanged() argument
123 CFWL_MessageKillFocus* pKill = static_cast<CFWL_MessageKillFocus*>(pMsg); in OnDropListFocusChanged()
[all …]
Dcfwl_notedriver.cpp289 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage); in DoKey() local
291 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
292 pMsg->m_dwKeyCode == FWL_VKEY_Tab) { in DoKey()
294 CFWL_Widget* pForm = GetMessageForm(pMsg->m_pDstTarget); in DoKey()
314 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
315 pMsg->m_dwKeyCode == FWL_VKEY_Return) { in DoKey()
319 pMsg->m_pDstTarget = defButton; in DoKey()
325 pMsg->m_pDstTarget = m_pFocus; in DoKey()
331 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in DoMouse() local
332 if (pMsg->m_dwCmd == FWL_MouseCommand::Leave || in DoMouse()
[all …]
Dcfwl_pushbutton.cpp108 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
109 switch (pMsg->m_dwCmd) { in OnProcessMessage()
111 OnLButtonDown(pMsg); in OnProcessMessage()
114 OnLButtonUp(pMsg); in OnProcessMessage()
117 OnMouseMove(pMsg); in OnProcessMessage()
120 OnMouseLeave(pMsg); in OnProcessMessage()
144 void CFWL_PushButton::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
153 void CFWL_PushButton::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
163 void CFWL_PushButton::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
165 if (m_rtClient.Contains(pMsg->m_pos)) { in OnLButtonUp()
[all …]
Dcfwl_comboboxproxy.cpp36 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
37 switch (pMsg->m_dwCmd) { in OnProcessMessage()
39 OnLButtonDown(pMsg); in OnProcessMessage()
42 OnLButtonUp(pMsg); in OnProcessMessage()
73 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnLButtonDown() local
74 if (CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos)) { in OnLButtonDown()
98 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnLButtonUp() local
99 if (!CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos) && in OnLButtonUp()
109 CFWL_MessageKillFocus* pMsg = static_cast<CFWL_MessageKillFocus*>(pMessage); in OnFocusChanged() local
110 if (!pMsg->m_pSetFocus) in OnFocusChanged()
Dcfwl_combobox.h119 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
120 void OnLButtonDown(CFWL_MessageMouse* pMsg);
121 void OnLButtonUp(CFWL_MessageMouse* pMsg);
122 void OnMouseMove(CFWL_MessageMouse* pMsg);
123 void OnMouseLeave(CFWL_MessageMouse* pMsg);
124 void OnKey(CFWL_MessageKey* pMsg);
125 void DoSubCtrlKey(CFWL_MessageKey* pMsg);
141 void DisForm_OnLButtonDown(CFWL_MessageMouse* pMsg);
142 void DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet);
143 void DisForm_OnKey(CFWL_MessageKey* pMsg);
Dcfwl_combobox.cpp715 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
716 switch (pMsg->m_dwCmd) { in OnProcessMessage()
718 OnLButtonDown(pMsg); in OnProcessMessage()
721 OnLButtonUp(pMsg); in OnProcessMessage()
724 OnMouseMove(pMsg); in OnProcessMessage()
727 OnMouseLeave(pMsg); in OnProcessMessage()
763 void CFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
766 if (IsDropDownStyle() && pMsg->m_pSrcTarget != m_pListBox.get()) { in OnFocusChanged()
778 if (!IsDropDownStyle() || pMsg->m_pDstTarget == m_pListBox.get()) { in OnFocusChanged()
789 void CFWL_ComboBox::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
[all …]
Dcfwl_pushbutton.h42 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);
Dcfwl_notedriver.h59 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);
Dcfwl_checkbox.cpp236 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
237 switch (pMsg->m_dwCmd) { in OnProcessMessage()
242 OnLButtonUp(pMsg); in OnProcessMessage()
245 OnMouseMove(pMsg); in OnProcessMessage()
294 void CFWL_CheckBox::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
299 if (!m_rtClient.Contains(pMsg->m_pos)) in OnLButtonUp()
307 void CFWL_CheckBox::OnMouseMove(CFWL_MessageMouse* pMsg) { in OnMouseMove() argument
313 if (m_rtClient.Contains(pMsg->m_pos)) { in OnMouseMove()
333 if (m_rtClient.Contains(pMsg->m_pos)) { in OnMouseMove()
353 void CFWL_CheckBox::OnKeyDown(CFWL_MessageKey* pMsg) { in OnKeyDown() argument
[all …]
Dcfwl_datetimepicker.cpp519 void CFWL_DateTimePicker::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
520 if (!pMsg) in OnFocusChanged()
523 return DisForm_OnFocusChanged(pMsg, bSet); in OnFocusChanged()
532 if (pMsg->m_pSrcTarget == m_pMonthCal.get() && IsMonthCalendarVisible()) { in OnFocusChanged()
538 void CFWL_DateTimePicker::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
539 if (!pMsg) in OnLButtonDown()
543 if (!m_rtBtn.Contains(pMsg->m_pos)) in OnLButtonDown()
556 void CFWL_DateTimePicker::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
557 if (!pMsg) in OnLButtonUp()
561 if (m_rtBtn.Contains(pMsg->m_pos)) in OnLButtonUp()
[all …]
Dcfwl_edit.h145 void DoRButtonDown(CFWL_MessageMouse* pMsg);
146 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
147 void OnLButtonDown(CFWL_MessageMouse* pMsg);
148 void OnLButtonUp(CFWL_MessageMouse* pMsg);
149 void OnButtonDoubleClick(CFWL_MessageMouse* pMsg);
150 void OnMouseMove(CFWL_MessageMouse* pMsg);
151 void OnKeyDown(CFWL_MessageKey* pMsg);
152 void OnChar(CFWL_MessageKey* pMsg);
Dcfwl_datetimepicker.h78 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
79 void OnLButtonDown(CFWL_MessageMouse* pMsg);
80 void OnLButtonUp(CFWL_MessageMouse* pMsg);
81 void OnMouseMove(CFWL_MessageMouse* pMsg);
82 void OnMouseLeave(CFWL_MessageMouse* pMsg);
91 void DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet);
Dcfwl_combolist.h33 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);
Dcfwl_edit.cpp1106 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
1107 switch (pMsg->m_dwCmd) { in OnProcessMessage()
1109 OnLButtonDown(pMsg); in OnProcessMessage()
1112 OnLButtonUp(pMsg); in OnProcessMessage()
1115 OnButtonDoubleClick(pMsg); in OnProcessMessage()
1118 OnMouseMove(pMsg); in OnProcessMessage()
1121 DoRButtonDown(pMsg); in OnProcessMessage()
1160 void CFWL_Edit::DoRButtonDown(CFWL_MessageMouse* pMsg) { in DoRButtonDown() argument
1164 m_CursorPosition = m_EdtEngine.GetIndexForPoint(DeviceToEngine(pMsg->m_pos)); in DoRButtonDown()
1167 void CFWL_Edit::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
[all …]
Dcfwl_monthcalendar.cpp749 void CFWL_MonthCalendar::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
750 if (m_rtLBtn.Contains(pMsg->m_pos)) { in OnLButtonDown()
754 } else if (m_rtRBtn.Contains(pMsg->m_pos)) { in OnLButtonDown()
758 } else if (m_rtToday.Contains(pMsg->m_pos)) { in OnLButtonDown()
768 void CFWL_MonthCalendar::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
770 return DisForm_OnLButtonUp(pMsg); in OnLButtonUp()
772 if (m_rtLBtn.Contains(pMsg->m_pos)) { in OnLButtonUp()
777 if (m_rtRBtn.Contains(pMsg->m_pos)) { in OnLButtonUp()
782 if (m_rtToday.Contains(pMsg->m_pos)) in OnLButtonUp()
789 int32_t iCurSel = GetDayAtPoint(pMsg->m_pos); in OnLButtonUp()
[all …]
/external/epid-sdk/ext/ipp/sources/ippcp/
Dpcphashmessage_rmf.c76 IPPFUN(IppStatus, ippsHashMessage_rmf,(const Ipp8u* pMsg, int len, Ipp8u* pMD, const IppsHashMethod…
84 IPP_BADARG_RET((len && !pMsg), ippStsNullPtrErr);
97 pMethod->hashUpdate(hash, pMsg, msgLenBlks);
98 pMsg += msgLenBlks;
101 pMsg, msgLenRest,
Dpcpsha512_messagedigest.c59 IppStatus cpSHA512MessageDigest(DigestSHA512 hash, const Ipp8u* pMsg, int msgLen, const DigestSHA51… in cpSHA512MessageDigest() argument
66 IPP_BADARG_RET((msgLen && !pMsg), ippStsNullPtrErr); in cpSHA512MessageDigest()
78 UpdateSHA512(hash, pMsg, msgLenBlks, sha512_cnt); in cpSHA512MessageDigest()
79 pMsg += msgLenBlks; in cpSHA512MessageDigest()
82 cpFinalizeSHA512(hash, pMsg, msgLenRest, msgLen, 0); in cpSHA512MessageDigest()
Dpcpsha256_messagedigest.c59 IppStatus cpSHA256MessageDigest(DigestSHA256 hash, const Ipp8u* pMsg, int msgLen, const DigestSHA25… in cpSHA256MessageDigest() argument
66 IPP_BADARG_RET((msgLen && !pMsg), ippStsNullPtrErr); in cpSHA256MessageDigest()
94 updateFunc(hash, pMsg, msgLenBlks, sha256_cnt); in cpSHA256MessageDigest()
95 pMsg += msgLenBlks; in cpSHA256MessageDigest()
98 cpFinalizeSHA256(hash, pMsg, msgLenRest, msgLen); in cpSHA256MessageDigest()
Dpcpsha1messagedigest.c76 IPPFUN(IppStatus, ippsSHA1MessageDigest,(const Ipp8u* pMsg, int len, Ipp8u* pMD))
83 IPP_BADARG_RET((len && !pMsg), ippStsNullPtrErr);
108 updateFunc((Ipp32u*)pMD, pMsg, msgLenBlks, sha1_cnt);
109 pMsg += msgLenBlks;
112 cpFinalizeSHA1((Ipp32u*)pMD, pMsg, msgLenRest, len);
Dpcpsha1stuff.h78 static void sha1_hashUpdate(void* pHash, const Ipp8u* pMsg, int msgLen) in sha1_hashUpdate() argument
80 UpdateSHA1(pHash, pMsg, msgLen, sha1_cnt); in sha1_hashUpdate()
84 static void sha1_ni_hashUpdate(void* pHash, const Ipp8u* pMsg, int msgLen) in sha1_ni_hashUpdate() argument
86 UpdateSHA1ni(pHash, pMsg, msgLen, sha1_cnt); in sha1_ni_hashUpdate()
Dpcpsha256stuff.h118 static void sha256_hashUpdate(void* pHash, const Ipp8u* pMsg, int msgLen) in sha256_hashUpdate() argument
120 UpdateSHA256(pHash, pMsg, msgLen, sha256_cnt); in sha256_hashUpdate()
123 static void sha256_ni_hashUpdate(void* pHash, const Ipp8u* pMsg, int msgLen) in sha256_ni_hashUpdate() argument
125 UpdateSHA256ni(pHash, pMsg, msgLen, sha256_cnt); in sha256_ni_hashUpdate()
195 IppStatus cpSHA256MessageDigest(DigestSHA256 hash, const Ipp8u* pMsg, int msgLen, const DigestSHA25…

123