Home
last modified time | relevance | path

Searched refs:sc_mask (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/ui/views/win/
Dhwnd_message_handler.cc2192 static const int sc_mask = 0xFFF0; in OnSysCommand() local
2195 (((notification_code & sc_mask) == SC_SIZE) || in OnSysCommand()
2196 ((notification_code & sc_mask) == SC_MOVE) || in OnSysCommand()
2197 ((notification_code & sc_mask) == SC_MAXIMIZE))) in OnSysCommand()
2200 if ((notification_code & sc_mask) == SC_MINIMIZE || in OnSysCommand()
2201 (notification_code & sc_mask) == SC_MAXIMIZE || in OnSysCommand()
2202 (notification_code & sc_mask) == SC_RESTORE) { in OnSysCommand()
2204 } else if ((notification_code & sc_mask) == SC_MOVE || in OnSysCommand()
2205 (notification_code & sc_mask) == SC_SIZE) { in OnSysCommand()
2217 if ((notification_code & sc_mask) == SC_KEYMENU && point.x == 0) { in OnSysCommand()
[all …]
/external/qemu/
Dcpu-exec.c92 sigprocmask(SIG_SETMASK, &uc->sc_mask, NULL); in cpu_resume_from_signal()
877 # define MASK_sig(context) ((context)->sc_mask)
924 #define MASK_sig(context) ((context)->sc_mask)
1101 void *sigmask = (void *)(long)uc->sc_mask; in cpu_signal_handler()
/external/strace/
Dsignal.c129 unsigned long sc_mask; member
1345 memcpy(tcp->u_arg + 1, &sc.sc_mask, sizeof(sc.sc_mask)); in sys_sigreturn()
1401 tcp->u_arg[1] = sc.sc_mask; in sys_sigreturn()
1424 tcp->u_arg[1] = sc.sc_mask; in sys_sigreturn()
/external/chromium_org/chrome/browser/ui/views/frame/
Dbrowser_view.cc1606 static const int sc_mask = 0xFFF0; in ExecuteWindowsCommand() local
1607 if (((command_id & sc_mask) == SC_MOVE) || in ExecuteWindowsCommand()
1608 ((command_id & sc_mask) == SC_SIZE) || in ExecuteWindowsCommand()
1609 ((command_id & sc_mask) == SC_MAXIMIZE)) in ExecuteWindowsCommand()