HomeSort by relevance Sort by last modified time
    Searched refs:MSG (Results 101 - 125 of 174) sorted by null

1 2 3 45 6 7

  /external/vulkan-validation-layers/demos/smoke/
ShellWin32.cpp 130 LRESULT ShellWin32::handle_message(UINT msg, WPARAM wparam, LPARAM lparam) {
131 switch (msg) {
167 return DefWindowProc(hwnd_, msg, wparam, lparam);
191 MSG msg; local
192 while (PeekMessage(&msg, nullptr, 0, 0, PM_REMOVE)) {
193 if (msg.message == WM_QUIT) {
198 TranslateMessage(&msg);
199 DispatchMessage(&msg);
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.h 85 bool PreTranslateMessage(MSG* msg);
164 bool OnMessage(UINT msg, WPARAM wp, LPARAM lp, LRESULT* result);
166 static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
  /external/python/cpython3/Lib/test/
test_wsgiref.py 669 MSG = b"Some output has been sent"
671 s("200 OK",[])(MSG)
678 "\r\n".encode("iso-8859-1")+MSG))
742 MSG = b"Some output has been sent"
744 s("200 OK",[])(MSG)
772 msg = "should not do partial writes"
773 with self.assertWarnsRegex(DeprecationWarning, msg):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_wsgiref.py 540 MSG = "Some output has been sent"
542 s("200 OK",[])(MSG)
549 "\r\n"+MSG)
  /external/f2fs-tools/fsck/
resize.c 126 MSG(0, "\tError: Device size is not sufficient for F2FS volume, "
581 MSG(0, "\tError: Failed to shrink NATs\n");
601 MSG(0, "Try to do defragement: %s\n", err ? "Skip": "Done");
segment.c 286 MSG(0, "Skip: Fail to open %s\n", de->full_path);
331 MSG(1, "Info: Create %s -> %s\n"
fsck.c 917 MSG(0, "ino: 0x%x is orphan inode, but has i_links: %u",
    [all...]
  /external/libmojo/ipc/
ipc_message_utils.cc     [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.h 187 extern mDNSu8 *putDomainNameAsLabels(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const domainname *const name);
188 extern mDNSu8 *putRData(const DNSMessage *const msg, mDNSu8 *ptr, const mDNSu8 *const limit, const ResourceRecord *const rr);
193 #define AllowedRRSpace(msg) (((msg)->h.numAnswers || (msg)->h.numAuthorities || (msg)->h.numAdditionals) ? NormalMaxDNSMessageData : AbsoluteMaxDNSMessageData)
195 extern mDNSu8 *PutResourceRecordTTLWithLimit(DNSMessage *const msg, mDNSu8 *ptr, mDNSu16 *count, ResourceRecord *rr, mDNSu32 ttl, const mDNSu8 *limit);
197 #define PutResourceRecordTTL(msg, ptr, count, rr, ttl) \
198 PutResourceRecordTTLWithLimit((msg), (ptr), (count), (rr), (ttl), (msg)->data + AllowedRRSpace(msg)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls_common.c 38 static void eap_server_tls_log_cb(void *ctx, const char *msg)
41 eap_log_msg(sm, "TLS: %s", msg);
216 data->state = MSG;
388 data->state = MSG;
  /external/f2fs-tools/lib/
libf2fs_zoned.c 273 MSG(0, "Info: Discarded %"PRIu64" MB\n", (sector << 9) >> 20);
  /external/swiftshader/tests/OGLSimpleCube/
OGLSimpleCube.cpp 184 MSG msg; local
218 if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
220 if(msg.message == WM_QUIT)
225 TranslateMessage(&msg);
226 DispatchMessage(&msg);
238 return msg.wParam;
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_Windows.cpp 489 MSG msg; local
490 PeekMessage(&msg, hWnd, NULL, NULL, PM_REMOVE);
491 TranslateMessage(&msg);
492 DispatchMessage(&msg);
  /external/webrtc/talk/media/devices/
gdivideorenderer.cc 85 MSG msg; local
86 while (GetMessage(&msg, NULL, 0, 0) > 0) {
87 TranslateMessage(&msg);
88 DispatchMessage(&msg);
  /external/deqp/external/openglcts/modules/gles31/
es31cFramebufferNoAttachmentsTests.cpp 40 void checkErrorEqualsExpected(GLenum err, GLenum expected, const char* msg, const char* file, int line)
47 if (msg)
48 msgStr << " in '" << msg << "'"; local
57 #define GLU_EXPECT_ERROR(ERR, EXPECTED, MSG) checkErrorEqualsExpected((ERR), EXPECTED, MSG, __FILE__, __LINE__)
  /external/deqp/modules/egl/
teglImageTests.cpp 206 #define CHECK_CREATE(MSG, DPY, CONTEXT, SOURCE, ERR) checkCreate(MSG, DPY, #DPY, CONTEXT, #CONTEXT, SOURCE, #SOURCE, ERR)
218 void InvalidCreateImage::checkCreate (const char* msg, EGLDisplay dpy, const char* dpyStr, EGLContext context, const char* ctxStr, EGLenum source, const char* srcStr, EGLint expectError)
220 m_testCtx.getLog() << TestLog::Message << msg << TestLog::EndMessage;
  /external/deqp/modules/glshared/
glsStateQueryUtil.hpp 45 #define GLS_COLLECT_GL_ERROR(RES, ERR, MSG) \
50 (RES).fail(std::string("Got Error ") + glu::getErrorStr(err).toString() + ": " + (MSG)); \
  /external/webrtc/webrtc/base/
win32socketserver.cc 767 MSG msg; local
773 b = GetMessage(&msg, NULL, 0, 0);
778 if (!hdlg_ || !IsDialogMessage(hdlg_, &msg)) {
779 TranslateMessage(&msg);
780 DispatchMessage(&msg);
788 MSG msg; local
789 b = GetMessage(&msg, NULL, s_wm_wakeup_id, s_wm_wakeup_id);
826 Message msg; local
    [all...]
  /external/expat/xmlwf/
xmlwin32url.cxx 412 MSG msg; local
413 while (!qi.stop && GetMessage (&msg, NULL, 0, 0)) {
414 TranslateMessage (&msg);
415 DispatchMessage (&msg);
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.cc 513 MSG msg; local
514 while (GetMessage(&msg, NULL, 0, 0)) {
515 if (!TranslateAccelerator(msg.hwnd, accel_table, &msg)) {
516 TranslateMessage(&msg);
517 DispatchMessage(&msg);
521 return static_cast<int>(msg.wParam);
  /external/icu/icu4c/source/samples/layout/
clayout.c 81 MSG msg; local
113 while (GetMessage(&msg, NULL, 0, 0)) {
114 if (!TranslateAccelerator(hwnd, hAccel, &msg)) {
115 TranslateMessage(&msg);
116 DispatchMessage(&msg);
121 return msg.wParam;
layout.cpp 80 MSG msg; local
112 while (GetMessage(&msg, NULL, 0, 0)) {
113 if (!TranslateAccelerator(hwnd, hAccel, &msg)) {
114 TranslateMessage(&msg);
115 DispatchMessage(&msg);
120 return msg.wParam;
  /external/libpng/contrib/gregbook/
rpng-win.c 178 MSG msg; local
468 while (GetMessage(&msg, NULL, 0, 0)) {
469 TranslateMessage(&msg);
470 DispatchMessage(&msg);
478 return msg.wParam;
  /external/libusb/libusb/os/
windows_nt_common.c 392 MSG msg; local
396 pPeekMessageA(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);
405 if (pGetMessageA(&msg, NULL, WM_TIMER_REQUEST, WM_TIMER_EXIT) == -1) {
410 switch (msg.message) {
415 request = (struct timer_request *)msg.lParam;
  /external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
PVRShellOS.cpp 376 MSG msg; local
381 while(PeekMessage(&msg, m_hWnd, 0, 0, PM_REMOVE))
383 if (!TranslateAccelerator(msg.hwnd, m_hAccelTable, &msg))
385 TranslateMessage(&msg);
386 DispatchMessage(&msg);

Completed in 1776 milliseconds

1 2 3 45 6 7