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

1 2 3 4 56 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wtypes.h 393 } MSG;
ocidl.h     [all...]
shdeprecated.h 229 virtual HRESULT WINAPI OnTranslateAccelerator(MSG *pMsg,DWORD grfModifiers) = 0;
239 HRESULT (WINAPI *OnTranslateAccelerator)(IExpDispSupport *This,MSG *pMsg,DWORD grfModifiers);
257 HRESULT WINAPI IExpDispSupport_OnTranslateAccelerator_Proxy(IExpDispSupport *This,MSG *pMsg,DWORD grfModifiers);
    [all...]
shobjidl.h     [all...]
  /system/core/adb/client/
usb_windows.cpp 237 MSG msg; local
238 while (GetMessageW(&msg, NULL, 0, 0)) {
239 TranslateMessage(&msg);
240 DispatchMessageW(&msg);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Protocol/WinNtThunk/
WinNtThunk.h 105 UINT Msg,
984 UINT Msg,
1065 CONST MSG *lpMsg
1072 CONST MSG *lpMsg
  /device/linaro/bootloader/edk2/Nt32Pkg/Include/Protocol/
WinNtThunk.h 98 UINT Msg,
987 UINT Msg,
1068 CONST MSG *lpMsg
1075 CONST MSG *lpMsg
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiDisplayTests.cpp 54 #define TCU_FAIL_STR(MSG) TCU_FAIL(string(MSG).c_str())
    [all...]
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 166 MSG msg; local
167 while (GetMessage(&msg, NULL, 0, 0)) {
168 TranslateMessage(&msg);
169 DispatchMessage(&msg);
954 MSG msg; local
955 while (GetMessage(&msg, 0, 0, 0)) {
956 if (!CallMsgFilter(&msg, kMyMessageFilterCode))
957 DispatchMessage(&msg);
    [all...]
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 265 // format is as follows: <PRI>TIMESTAMP HOSTNAME TAG[PID]: MSG
266 func (w *Writer) write(p Priority, msg string) (int, error) {
269 if !strings.HasSuffix(msg, "\n") {
273 err := w.conn.writeString(p, w.hostname, w.tag, msg, nl)
280 return len(msg), nil
283 func (n *netConn) writeString(p Priority, hostname, tag, msg, nl string) error {
291 tag, os.Getpid(), msg, nl)
297 tag, os.Getpid(), msg, nl)
  /prebuilts/go/linux-x86/src/log/syslog/
syslog.go 265 // format is as follows: <PRI>TIMESTAMP HOSTNAME TAG[PID]: MSG
266 func (w *Writer) write(p Priority, msg string) (int, error) {
269 if !strings.HasSuffix(msg, "\n") {
273 err := w.conn.writeString(p, w.hostname, w.tag, msg, nl)
280 return len(msg), nil
283 func (n *netConn) writeString(p Priority, hostname, tag, msg, nl string) error {
291 tag, os.Getpid(), msg, nl)
297 tag, os.Getpid(), msg, nl)
  /external/libmojo/ipc/
ipc_message_utils.h     [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
sunjce_provider.jar 
sunpkcs11.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
sunjce_provider.jar 
sunpkcs11.jar 
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
WinNtGopScreen.c 879 MSG Message;
    [all...]
  /external/f2fs-tools/include/
f2fs_fs.h 201 #define MSG(n, fmt, ...) \
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 288 MSG msg; local
620 while (GetMessage(&msg, NULL, 0, 0)) {
621 TranslateMessage(&msg);
622 DispatchMessage(&msg);
631 return msg.wParam;
796 static const char *msg = "Computing background image...";
797 int x, y, len = strlen(msg);
807 TextOut(hdc, ((x < 0)? 0 : x), ((y < 0)? 0 : y), msg, len);
    [all...]
  /external/libpng/contrib/visupng/
VisualPng.c 84 MSG msg; local
136 while (GetMessage (&msg, NULL, 0, 0))
138 if (!TranslateAccelerator (hwnd, hAccel, &msg))
140 TranslateMessage (&msg);
141 DispatchMessage (&msg);
144 return msg.wParam;
  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
ChooserDialog.cpp 467 BOOL ChooserDialog::PreTranslateMessage(MSG* pMsg)
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc 120 bool MainWnd::PreTranslateMessage(MSG* msg) {
122 if (msg->message == WM_CHAR) {
123 if (msg->wParam == VK_TAB) {
126 } else if (msg->wParam == VK_RETURN) {
129 } else if (msg->wParam == VK_ESCAPE) {
138 } else if (msg->hwnd == NULL && msg->message == UI_THREAD_CALLBACK) {
139 callback_->UIThreadCallback(static_cast<int>(msg->wParam),
140 reinterpret_cast<void*>(msg->lParam))
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 117 typedef void (*ProcessReplyFn)(DNSServiceOp *const sdr, const CallbackHeader *const cbh, const char *msg, const char *const end);
323 char *msg = NULL; local
350 msg = malloc(*len);
351 if (!msg) { syslog(LOG_WARNING, "dnssd_clientstub create_hdr: malloc failed"); return NULL; }
353 memset(msg, 0, *len);
354 hdr = (ipc_msg_hdr *)msg;
361 *data_start = msg + sizeof(ipc_msg_hdr);
544 #define deliver_request_bailout(MSG) \
545 do { syslog(LOG_WARNING, "dnssd_clientstub deliver_request: %s failed %d (%s)", (MSG), dnssd_errno, dnssd_strerror(dnssd_errno)); goto cleanup; } while(0)
695 struct msghdr msg;
    [all...]
  /external/python/cpython3/PC/
launcher.c 619 MSG msg; local
622 GetMessage(&msg, 0, 0, 0);
    [all...]
  /external/v8/src/s390/
simulator-s390.h 1042 EVALUATE(MSG);

Completed in 829 milliseconds

1 2 3 4 56 7