Home
last modified time | relevance | path

Searched refs:AddInt32 (Results 1 – 25 of 496) sorted by relevance

12345678910>>...20

/haiku/src/kits/media/
H A DNotifications.cpp65 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification); in Register()
71 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification); in Register()
72 msg.AddInt32(NOTIFICATION_PARAM_TEAM, BPrivate::current_team()); in Register()
89 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification); in Unregister()
95 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification); in Unregister()
96 msg.AddInt32(NOTIFICATION_PARAM_TEAM, BPrivate::current_team()); in Unregister()
119 msg.AddInt32(NOTIFICATION_PARAM_WHAT, what); in ReportError()
120 msg.AddInt32("be:node_id", node.node); in ReportError()
132 msg.AddInt32(NOTIFICATION_PARAM_WHAT, B_MEDIA_NODE_CREATED); in NodesCreated()
134 msg.AddInt32("media_node_id", ids[i]); in NodesCreated()
[all …]
/haiku/src/kits/locale/
H A DInitLocaleKit.cpp69 attrMsg.AddInt32("attr:type", B_STRING_TYPE); in SetupCatalogBasics()
73 attrMsg.AddInt32("attr:alignment", 0); in SetupCatalogBasics()
74 attrMsg.AddInt32("attr:width", 140); in SetupCatalogBasics()
78 attrMsg.AddInt32("attr:type", B_STRING_TYPE); in SetupCatalogBasics()
82 attrMsg.AddInt32("attr:alignment", 0); in SetupCatalogBasics()
83 attrMsg.AddInt32("attr:width", 60); in SetupCatalogBasics()
87 attrMsg.AddInt32("attr:type", B_INT32_TYPE); in SetupCatalogBasics()
91 attrMsg.AddInt32("attr:alignment", 0); in SetupCatalogBasics()
92 attrMsg.AddInt32("attr:width", 70); in SetupCatalogBasics()
/haiku/src/add-ons/kernel/network/stack/
H A Dnotifications.cpp34 message.AddInt32("opcode", B_NETWORK_INTERFACE_ADDED); in notify_interface_added()
50 message.AddInt32("opcode", B_NETWORK_INTERFACE_REMOVED); in notify_interface_removed()
67 message.AddInt32("opcode", B_NETWORK_INTERFACE_CHANGED); in notify_interface_changed()
70 message.AddInt32("old flags", oldFlags); in notify_interface_changed()
71 message.AddInt32("new flags", newFlags); in notify_interface_changed()
87 message.AddInt32("opcode", B_NETWORK_DEVICE_LINK_CHANGED); in notify_link_changed()
89 message.AddInt32("media", device->media); in notify_link_changed()
91 message.AddInt32("link quality", device->link_quality); in notify_link_changed()
/haiku/src/bin/multiuser/
H A Duseradd.cpp201 if (message.AddInt32("uid", uid) != B_OK in main()
202 || message.AddInt32("gid", gid) != B_OK in main()
209 || message.AddInt32("last changed", time(NULL)) != B_OK in main()
210 || message.AddInt32("min", min) != B_OK in main()
211 || message.AddInt32("max", max) != B_OK in main()
212 || message.AddInt32("warn", warn) != B_OK in main()
213 || message.AddInt32("inactive", inactive) != B_OK in main()
214 || message.AddInt32("expiration", expiration) != B_OK in main()
215 || message.AddInt32("flags", 0) != B_OK in main()
/haiku/src/apps/serialconnect/
H A DSerialApp.cpp244 reply.AddInt32("result", fSerialPort.DataRate()); in MessageReceived()
251 settings.AddInt32("baudrate", rate); in MessageReceived()
256 reply.AddInt32("result", fSerialPort.DataBits() + 7); in MessageReceived()
263 settings.AddInt32("databits", bits - 7); in MessageReceived()
268 reply.AddInt32("result", fSerialPort.StopBits() + 1); in MessageReceived()
275 settings.AddInt32("stopbits", bits - 1); in MessageReceived()
297 settings.AddInt32("parity", i); in MessageReceived()
322 settings.AddInt32("flowcontrol", i); in MessageReceived()
379 message.AddInt32("parity", fSerialPort.ParityMode()); in LoadSettings()
380 message.AddInt32("databits", fSerialPort.DataBits()); in LoadSettings()
[all …]
/haiku/src/servers/registrar/
H A DClipboardHandler.cpp77 reply.AddInt32("result", result); in MessageReceived()
88 reply.AddInt32("count", clipboard->Count()); in MessageReceived()
93 reply.AddInt32("result", result); in MessageReceived()
112 reply.AddInt32("result", result); in MessageReceived()
130 reply.AddInt32("result", result); in MessageReceived()
144 reply.AddInt32("count", clipboard->Count()); in MessageReceived()
150 reply.AddInt32("result", result); in MessageReceived()
155 reply.AddInt32("result", result); in MessageReceived()
183 result = reply.AddInt32("count", clipboard->Count()); in MessageReceived()
190 reply.AddInt32("result", result); in MessageReceived()
/haiku/src/servers/print/
H A DPrintServerApp.Scripting.cpp68 reply.AddInt32("error", B_OK); in HandleScriptingCommand()
74 reply.AddInt32("error", B_OK); in HandleScriptingCommand()
84 reply.AddInt32("error", in HandleScriptingCommand()
93 reply.AddInt32("error", fUseConfigWindow); in HandleScriptingCommand()
108 reply.AddInt32("error", CreatePrinter(name.String(), in HandleScriptingCommand()
124 reply.AddInt32("error", rc); in HandleScriptingCommand()
132 reply.AddInt32("result", Printer::CountPrinters()); in HandleScriptingCommand()
133 reply.AddInt32("error", B_OK); in HandleScriptingCommand()
137 reply.AddInt32("result", Transport::CountTransports()); in HandleScriptingCommand()
138 reply.AddInt32("error", B_OK); in HandleScriptingCommand()
[all …]
/haiku/src/add-ons/network_settings/sshd/
H A DSSHServiceAddOn.cpp128 if (message.AddInt32("uid", userID) == B_OK in Enable()
129 && message.AddInt32("gid", groupID) == B_OK in Enable()
136 && message.AddInt32("last changed", time(NULL)) == B_OK in Enable()
137 && message.AddInt32("min", min) == B_OK in Enable()
138 && message.AddInt32("max", max) == B_OK in Enable()
139 && message.AddInt32("warn", warn) == B_OK in Enable()
140 && message.AddInt32("inactive", inactive) == B_OK in Enable()
141 && message.AddInt32("expiration", expiration) == B_OK in Enable()
142 && message.AddInt32("flags", 0) == B_OK in Enable()
/haiku/src/preferences/time/
H A DBaseView.cpp102 fMessage.AddInt32("day", date.Day()); in _SendNotices()
103 fMessage.AddInt32("year", date.Year()); in _SendNotices()
104 fMessage.AddInt32("month", date.Month()); in _SendNotices()
107 fMessage.AddInt32("hour", time.Hour()); in _SendNotices()
108 fMessage.AddInt32("minute", time.Minute()); in _SendNotices()
109 fMessage.AddInt32("second", time.Second()); in _SendNotices()
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteEventStream.cpp141 event->AddInt32("buttons", fMouseButtons); in EventReceived()
142 event->AddInt32("modifiers", fModifiers); in EventReceived()
147 event->AddInt32("clicks", clicks); in EventReceived()
189 event->AddInt32("modifiers", fModifiers); in EventReceived()
193 event->AddInt32("raw_char", rawChar); in EventReceived()
197 event->AddInt32("key", key); in EventReceived()
205 event->AddInt32("be:old_modifiers", fModifiers); in EventReceived()
207 event->AddInt32("modifiers", fModifiers); in EventReceived()
/haiku/src/kits/screensaver/
H A DScreenSaverSettings.cpp141 fSettings.AddInt32("windowtab", fWindowTab); in Message()
143 fSettings.AddInt32("timeflags", fTimeFlags); in Message()
145 fSettings.AddInt32("timefade", fBlankTime / 1000000LL); in Message()
147 fSettings.AddInt32("timestandby", fStandByTime / 1000000LL); in Message()
149 fSettings.AddInt32("timesuspend", fSuspendTime / 1000000LL); in Message()
151 fSettings.AddInt32("timeoff", fOffTime / 1000000LL); in Message()
153 fSettings.AddInt32("cornernow", fBlankCorner); in Message()
155 fSettings.AddInt32("cornernever", fNeverBlankCorner); in Message()
159 fSettings.AddInt32("lockdelay", fPasswordTime / 1000000LL); in Message()
/haiku/src/add-ons/input_server/methods/pen/
H A DPenInputServerMethod.cpp140 mDown->AddInt32("modifiers", 0x0); in Filter()
141 mDown->AddInt32("key", 94); in Filter()
142 mDown->AddInt32("raw_char", 32); in Filter()
169 m->AddInt32("buttons", buttons); in Filter()
171 m->AddInt32("modifiers", modifiers); in Filter()
183 m->AddInt32("be:opcode", B_INPUT_METHOD_STARTED); in Filter()
187 m->AddInt32("be:opcode", B_INPUT_METHOD_LOCATION_REQUEST); in Filter()
191 m->AddInt32("be:opcode", B_INPUT_METHOD_STOPPED); in Filter()
/haiku/src/apps/pulse/
H A DConfigView.cpp234 message->AddInt32("color", bar_color); in MessageReceived()
261 message->AddInt32("active_color", fPrefs->mini_active_color); in MessageReceived()
262 message->AddInt32("idle_color", fPrefs->mini_idle_color); in MessageReceived()
263 message->AddInt32("frame_color", fPrefs->mini_frame_color); in MessageReceived()
288 message->AddInt32("active_color", fPrefs->deskbar_active_color); in MessageReceived()
289 message->AddInt32("idle_color", fPrefs->deskbar_idle_color); in MessageReceived()
290 message->AddInt32("frame_color", fPrefs->deskbar_frame_color); in MessageReceived()
326 message.AddInt32("width", width); in UpdateDeskbarIconWidth()
349 message->AddInt32("active_color", DEFAULT_MINI_ACTIVE_COLOR); in _ResetDefaults()
350 message->AddInt32("idle_color", DEFAULT_MINI_IDLE_COLOR); in _ResetDefaults()
[all …]
/haiku/src/servers/syslog_daemon/
H A Dlistener_output.cpp23 output.AddInt32("from", message.from); in listener_output()
24 output.AddInt32("when", message.when); in listener_output()
27 output.AddInt32("options", message.options); in listener_output()
28 output.AddInt32("priority", message.priority); in listener_output()
/haiku/src/add-ons/screen_savers/glife/
H A DGLifeState.h38 pbmPrefs->AddInt32("gridWidth", fGridWidth); in SaveState()
39 pbmPrefs->AddInt32("gridHeight", fGridHeight); in SaveState()
40 pbmPrefs->AddInt32("gridBorder", fGridBorder); in SaveState()
41 pbmPrefs->AddInt32("gridDelay", fGridDelay); in SaveState()
/haiku/src/apps/mediaplayer/
H A DControllerObserver.cpp52 message.AddInt32("result", result); in FileChanged()
67 message.AddInt32("index", index); in VideoTrackChanged()
80 message.AddInt32("index", index); in AudioTrackChanged()
93 message.AddInt32("index", index); in SubTitleTrackChanged()
130 message.AddInt32("state", state); in PlaybackStateChanged()
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp279 message->AddInt32("be:device_subtype", B_MOUSE_DEVICE_SUBTYPE); in DeviceWatcher()
280 message->AddInt32("buttons", movements.buttons); in DeviceWatcher()
284 message->AddInt32("clicks", clicks_count); in DeviceWatcher()
290 message->AddInt32("x", movements.xdelta); in DeviceWatcher()
291 message->AddInt32("y", movements.ydelta); in DeviceWatcher()
337 message->AddInt32("be:device_subtype", B_MOUSE_DEVICE_SUBTYPE); in DeviceWatcher()
338 message->AddInt32("buttons", movements.buttons); in DeviceWatcher()
339 message->AddInt32("x", xdelta); in DeviceWatcher()
340 message->AddInt32("y", ydelta); in DeviceWatcher()
350 message->AddInt32("be:device_subtype", B_MOUSE_DEVICE_SUBTYPE); in DeviceWatcher()
/haiku/src/add-ons/print/drivers/preview/
H A DPrinterDriver.cpp159 jobMsg->AddInt32("copies", 1); in JobSetup()
162 jobMsg->AddInt32("first_page", 1); in JobSetup()
165 jobMsg->AddInt32("last_page", INT32_MAX); in JobSetup()
186 msg->AddInt32("orientation", 0); in GetDefaultSettings()
187 msg->AddInt32("xres", 300); in GetDefaultSettings()
188 msg->AddInt32("yres", 300); in GetDefaultSettings()
/haiku/src/kits/app/
H A DLaunchRoster.cpp43 status_t status = request.AddInt32("user", getuid()); in RegisterSessionDaemon()
101 status = request.AddInt32("user", getuid()); in GetData()
155 status_t status = request.AddInt32("user", getuid()); in Target()
176 status_t status = request.AddInt32("user", getuid()); in StopTarget()
195 status_t status = request.AddInt32("user", getuid()); in Start()
212 status_t status = request.AddInt32("user", getuid()); in Stop()
231 status_t status = request.AddInt32("user", getuid()); in SetEnabled()
250 status_t status = request.AddInt32("user", getuid()); in StartSession()
293 status_t status = request.AddInt32("user", getuid()); in GetTargets()
318 status_t status = request.AddInt32("user", getuid()); in GetJobs()
[all …]
/haiku/src/apps/pairs/
H A DPairsWindow.cpp94 difficultyMessage->AddInt32("rows", 4); in _MakeMenuBar()
95 difficultyMessage->AddInt32("cols", 4); in _MakeMenuBar()
101 difficultyMessage->AddInt32("rows", 6); in _MakeMenuBar()
102 difficultyMessage->AddInt32("cols", 6); in _MakeMenuBar()
107 difficultyMessage->AddInt32("rows", 8); in _MakeMenuBar()
108 difficultyMessage->AddInt32("cols", 8); in _MakeMenuBar()
126 iconSizeMessage->AddInt32("size", kSmallIconSize); in _MakeMenuBar()
131 iconSizeMessage->AddInt32("size", kMediumIconSize); in _MakeMenuBar()
137 iconSizeMessage->AddInt32("size", kLargeIconSize); in _MakeMenuBar()
/haiku/src/libs/print/libprint/
H A DJobData.cpp158 fSettings.AddInt32(key, value); in SetInt()
465 message->AddInt32(kJDPaper, fPaper); in Save()
468 message->AddInt32(kJDResolution, fResolutionID); in Save()
477 message->AddInt32(kJDOrientation, fOrientation); in Save()
501 message->AddInt32(kJDMarginUnit, fMarginUnit); in Save()
514 message->AddInt32(kJDNup, fNup); in Save()
518 message->AddInt32(kJDFirstPage, fFirstPage); in Save()
522 message->AddInt32(kJDLastPage, fLastPage); in Save()
534 message->AddInt32(kJDPaperSource, fPaperSource); in Save()
538 message->AddInt32(kJDCopies, fCopies); in Save()
[all …]
/haiku/src/kits/bluetooth/
H A DLocalDevice.cpp73 request.AddInt32("hci_id", hid); in GetLocalDevice()
136 request.AddInt32("hci_id", fHid); in GetProperty()
162 request.AddInt32("hci_id", fHid); in GetDiscoverable()
190 request.AddInt32("hci_id", fHid); in SetDiscoverable()
246 request.AddInt32("hci_id", fHid); in GetBluetoothAddress()
284 request.AddInt32("hci_id", fHid); in GetFriendlyName()
314 request.AddInt32("hci_id", fHid); in SetFriendlyName()
347 request.AddInt32("hci_id", fHid); in GetDeviceClass()
384 request.AddInt32("hci_id", fHid); in SetDeviceClass()
410 request.AddInt32("hci_id", fHid); in _ReadLocalVersion()
[all …]
/haiku/src/tests/servers/app/playground/
H A DObjectWindow.cpp204 message->AddInt32("type", OBJECT_LINE); in ObjectWindow()
212 message->AddInt32("type", OBJECT_RECT); in ObjectWindow()
218 message->AddInt32("type", OBJECT_ROUND_RECT); in ObjectWindow()
224 message->AddInt32("type", OBJECT_ELLIPSE); in ObjectWindow()
232 message->AddInt32("mode", B_OP_COPY); in ObjectWindow()
236 message->AddInt32("mode", B_OP_OVER); in ObjectWindow()
240 message->AddInt32("mode", B_OP_INVERT); in ObjectWindow()
244 message->AddInt32("mode", B_OP_BLEND); in ObjectWindow()
248 message->AddInt32("mode", B_OP_SELECT); in ObjectWindow()
252 message->AddInt32("mode", B_OP_ERASE); in ObjectWindow()
[all …]
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistObserver.cpp30 message.AddInt32("index", index); in ItemAdded()
40 message.AddInt32("index", index); in ItemRemoved()
59 message.AddInt32("index", newIndex); in CurrentItemChanged()
/haiku/src/servers/input/
H A DInputServer.cpp408 reply.AddInt32("event port", fAppServerPort); in _AcquireInput()
412 reply.AddInt32("cursor semaphore", fCursorSem); in _AcquireInput()
598 reply.AddInt32("status", status); in MessageReceived()
637 msg.AddInt32("type", B_KEYBOARD_DEVICE); in HandleGetSetKeyRepeatDelay()
638 msg.AddInt32("code", B_KEY_REPEAT_DELAY_CHANGED); in HandleGetSetKeyRepeatDelay()
656 return reply->AddInt32("modifiers", fKeyInfo.modifiers); in HandleGetModifiers()
668 return reply->AddInt32("key", fKeys.caps_key); in HandleGetModifierKey()
670 return reply->AddInt32("key", fKeys.num_key); in HandleGetModifierKey()
672 return reply->AddInt32("key", fKeys.scroll_key); in HandleGetModifierKey()
674 return reply->AddInt32("key", fKeys.left_shift_key); in HandleGetModifierKey()
[all …]

12345678910>>...20