Searched refs:SendMsg (Results 1 - 22 of 22) sorted by relevance

/external/lzma/CPP/Windows/Control/
H A DComboBox.h18 void ResetContent() { SendMsg(CB_RESETCONTENT, 0, 0); }
19 LRESULT AddString(LPCTSTR s) { return SendMsg(CB_ADDSTRING, 0, (LPARAM)s); }
23 LRESULT SetCurSel(int index) { return SendMsg(CB_SETCURSEL, index, 0); }
24 int GetCurSel() { return (int)SendMsg(CB_GETCURSEL, 0, 0); }
25 int GetCount() { return (int)SendMsg(CB_GETCOUNT, 0, 0); }
27 LRESULT GetLBTextLen(int index) { return SendMsg(CB_GETLBTEXTLEN, index, 0); }
28 LRESULT GetLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, index, (LPARAM)s); }
34 LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, index, lParam); }
35 LRESULT GetItemData(int index) { return SendMsg(CB_GETITEMDATA, index, 0); }
39 void ShowDropDown(bool show = true) { SendMsg(CB_SHOWDROPDOW
[all...]
H A DReBar.h15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); }
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, index, (LPARAM)bandInfo)); }
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); }
21 { SendMsg(RB_MAXIMIZEBAND, index, BoolToBOOL(ideal)); }
23 { return LRESULTToBool(SendMsg(RB_SIZETORECT, 0, (LPARAM)rect)); }
25 { return (UINT)SendMsg(RB_GETBARHEIGHT); }
27 { return (UINT)SendMsg(RB_GETBANDCOUNT); }
29 { return LRESULTToBool(SendMsg(RB_DELETEBAND, index)); }
H A DTrackbar.h15 { SendMsg(TBM_SETRANGE, BoolToBOOL(redraw), MAKELONG(minimum, maximum)); }
17 { SendMsg(TBM_SETPOS, BoolToBOOL(redraw), pos); }
19 { SendMsg(TBM_SETTICFREQ, freq); }
22 { return (int)SendMsg(TBM_GETPOS); }
H A DProgressBar.h18 LRESULT SetPos(int pos) { return SendMsg(PBM_SETPOS, pos, 0); }
19 LRESULT DeltaPos(int increment) { return SendMsg(PBM_DELTAPOS, increment, 0); }
20 UINT GetPos() { return (UINT)SendMsg(PBM_GETPOS, 0, 0); }
21 LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMsg(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); }
22 DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, minValue, maxValue); }
23 int SetStep(int step) { return (int)SendMsg(PBM_SETSTEP, step, 0); }
24 LRESULT StepIt() { return SendMsg(PBM_STEPIT, 0, 0); }
25 INT GetRange(bool minValue, PPBRANGE range) { return (INT)SendMsg(PBM_GETRANGE, BoolToBOOL(minValue), (LPARAM)range); }
28 COLORREF SetBarColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBARCOLOR, 0, color); }
29 COLORREF SetBackgroundColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBKCOLO
[all...]
H A DToolBar.h14 void AutoSize() { SendMsg(TB_AUTOSIZE, 0, 0); }
15 DWORD GetButtonSize() { return (DWORD)SendMsg(TB_GETBUTTONSIZE, 0, 0); }
28 return LRESULTToBool(SendMsg(TB_GETMAXSIZE, 0, (LPARAM)size));
32 bool EnableButton(UINT buttonID, bool enable) { return LRESULTToBool(SendMsg(TB_ENABLEBUTTON, buttonID, MAKELONG(BoolToBOOL(enable), 0))); }
33 void ButtonStructSize() { SendMsg(TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON)); }
34 HIMAGELIST SetImageList(UINT listIndex, HIMAGELIST imageList) { return HIMAGELIST(SendMsg(TB_SETIMAGELIST, listIndex, (LPARAM)imageList)); }
35 bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); }
37 bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); }
H A DEdit.h14 void SetPasswordChar(WPARAM c) { SendMsg(EM_SETPASSWORDCHAR, c); }
H A DStatic.h14 HANDLE SetImage(WPARAM imageType, HANDLE handle) { return (HANDLE)SendMsg(STM_SETIMAGE, imageType, (LPARAM)handle); }
15 HANDLE GetImage(WPARAM imageType) { return (HANDLE)SendMsg(STM_GETIMAGE, imageType, 0); }
21 HICON SetIcon(HICON icon) { return (HICON)SendMsg(STM_SETICON, (WPARAM)icon, 0); }
22 HICON GetIcon() { return (HICON)SendMsg(STM_GETICON, 0, 0); }
H A DStatusBar.h19 { return LRESULTToBool(SendMsg(SB_SETTEXT, index | type, (LPARAM)text)); }
29 { return LRESULTToBool(SendMsg(SB_SETTEXTW, index | type, (LPARAM)text)); }
35 { return LRESULTToBool(SendMsg(SB_SETPARTS, numParts, (LPARAM)edgePostions)); }
37 { SendMsg(SB_SIMPLE, BoolToBOOL(simple), 0); }
H A DCommandBar.h28 // bool AddButtons(UINT numButtons, LPTBBUTTON buttons) { return BOOLToBool(SendMsg(TB_ADDBUTTONS, (WPARAM)numButtons, (LPARAM)buttons)); }
29 bool InsertButton(int iButton, LPTBBUTTON button) { return BOOLToBool(SendMsg(TB_INSERTBUTTON, (WPARAM)iButton, (LPARAM)button)); }
30 BOOL AddToolTips(UINT numToolTips, LPTSTR toolTips) { return BOOLToBool(SendMsg(TB_SETTOOLTIPS, (WPARAM)numToolTips, (LPARAM)toolTips)); }
31 void AutoSize() { SendMsg(TB_AUTOSIZE, 0, 0); }
H A DListView.h54 int InsertColumn(int columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); }
56 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); }
58 bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item)); }
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUAsmUtils.h15 namespace SendMsg { // Symbolic names for the sendmsg(...) syntax. namespace in namespace:llvm::AMDGPU
21 } // namespace SendMsg
H A DAMDGPUAsmUtils.cpp13 namespace SendMsg { namespace in namespace:llvm::AMDGPU
15 // This must be in sync with llvm::AMDGPU::SendMsg::Id enum members, see SIDefines.h.
35 // These two must be in sync with llvm::AMDGPU::SendMsg::Op enum members, see SIDefines.h.
51 } // namespace SendMsg
/external/libchrome/base/posix/
H A Dunix_domain_socket_linux.h36 static bool SendMsg(int fd,
H A Dunix_domain_socket_linux_unittest.cc93 ASSERT_TRUE(UnixDomainSocket::SendMsg(
122 ASSERT_TRUE(UnixDomainSocket::SendMsg(
H A Dunix_domain_socket_linux.cc49 bool UnixDomainSocket::SendMsg(int fd, function in class:base::UnixDomainSocket
215 if (!SendMsg(fd, request.data(), request.size(), send_fds))
/external/lzma/CPP/Windows/
H A DWindow.h174 void SetRedraw(bool redraw = true) { SendMsg(WM_SETREDRAW, BoolToBOOL(redraw), 0); }
226 LRESULT SendMsg(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) function in class:NWindows::CWindow
274 HICON SetIcon(WPARAM sizeType, HICON icon) { return (HICON)SendMsg(WM_SETICON, sizeType, (LPARAM)icon); }
/external/libchrome/sandbox/linux/syscall_broker/
H A Dbroker_host.cc146 ssize_t sent = base::UnixDomainSocket::SendMsg(
H A Dbroker_process_unittest.cc554 base::UnixDomainSocket::SendMsg(ipc_fd, kBogus, sizeof(kBogus), fds));
/external/llvm/lib/Target/AMDGPU/
H A DSIDefines.h132 namespace SendMsg { // Encoding of SIMM16 used in s_sendmsg* insns. namespace in namespace:llvm::AMDGPU
179 } // namespace SendMsg
/external/libchrome/base/test/
H A Dmultiprocess_test_android.cc169 bool success = UnixDomainSocket::SendMsg(
/external/llvm/lib/Target/AMDGPU/InstPrinter/
H A DAMDGPUInstPrinter.cpp794 using namespace llvm::AMDGPU::SendMsg;
/external/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp462 case ImmTySendMsg: OS << "SendMsg"; break;
1905 using namespace llvm::AMDGPU::SendMsg;
2002 using namespace llvm::AMDGPU::SendMsg;

Completed in 447 milliseconds