headers/os/drivers/Drivers.h
51
device_select_hook select; /* start select */
headers/os/drivers/device_manager.h
186
status_t (*select)(void *cookie, uint8 event, selectsync *sync);
headers/os/drivers/fs_interface.h
149
status_t (*select)(fs_volume* volume, fs_vnode* vnode, void* cookie,
headers/os/interface/MenuItem.h
73
void Select(bool select);
headers/posix/sys/select.h
46
extern int select(int numBits, struct fd_set *readBits, struct fd_set *writeBits,
headers/private/fs_shell/fssh_drivers.h
53
fssh_device_select_hook select; /* start select */
headers/private/fs_shell/fssh_fs_interface.h
164
fssh_status_t (*select)(fssh_fs_volume *volume, fssh_fs_vnode *vnode,
headers/private/interface/ColumnListView.h
269
void SetFocusRow(int32 index, bool select = false);
headers/private/interface/ColumnListView.h
270
void SetFocusRow(BRow* row, bool select = false);
headers/private/net/net_stack_interface.h
71
status_t (*select)(net_socket* socket, uint8 event,
headers/private/tracker/DirMenu.h
53
bool includeStartDir = false, bool select = false,
headers/private/userlandfs/legacy/fsproto.h
203
op_select *select;
headers/private/virtio/virtio_defs.h
171
uint8 select; // in
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
233
volatile uint32 *select = (uint32*)(bus->commonCfgAddr
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
237
*select = 0;
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
239
*select = 1;
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
256
volatile uint32 *select = (uint32*)(bus->commonCfgAddr
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
260
*select = 0;
src/add-ons/kernel/busses/virtio/virtio_pci/virtio_pci.cpp
262
*select = 1;
src/add-ons/kernel/drivers/disk/nvme/libnvme/nvme_common.h
231
select(0, NULL, NULL, NULL, &tv);
src/add-ons/kernel/drivers/disk/nvme/libnvme/nvme_common.h
243
select(0, NULL, NULL, NULL, &tv);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/ar5210_misc.c
143
int select = MS(rfsilent, AR_EEPROM_RFSILENT_GPIO_SEL);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/ar5210_misc.c
154
ar5210Gpio0SetIntr(ah, select, (ar5210GpioGet(ah, select) == polarity));
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/ar5211_misc.c
171
int select = MS(rfsilent, AR_EEPROM_RFSILENT_GPIO_SEL);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/ar5211_misc.c
178
ar5211GpioCfgInput(ah, select);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/ar5211_misc.c
188
ar5211GpioSetIntr(ah, select, (ar5211GpioGet(ah, select) != polarity));
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/ar5212_misc.c
150
int select = MS(rfsilent, AR_EEPROM_RFSILENT_GPIO_SEL);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/ar5212_misc.c
157
ath_hal_gpioCfgInput(ah, select);
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/ar5212_misc.c
167
ath_hal_gpioSetIntr(ah, select,
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/ar5212_misc.c
168
(ath_hal_gpioGet(ah, select) == polarity ? !polarity : polarity));
src/add-ons/kernel/file_systems/bindfs/kernel_interface.cpp
401
return sourceNode->ops->select(sourceVolume, sourceNode, cookie, event,
src/add-ons/kernel/file_systems/layers/attribute_overlay/attribute_overlay.cpp
1252
OVERLAY_CALL(select, cookie, event, sync)
src/add-ons/kernel/file_systems/layers/log_overlay/log_overlay.cpp
239
OVERLAY_CALL(select, cookie, event, sync)
src/add-ons/kernel/file_systems/layers/write_overlay/write_overlay.cpp
1772
OVERLAY_CALL(select, cookie, event, sync)
src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/FileSystem.cpp
642
CLEAR_UNSUPPORTED(FS_VNODE_CAPABILITY_SELECT, select);
src/add-ons/kernel/file_systems/userlandfs/server/beos/BeOSKernelFileSystem.cpp
150
fNodeCapabilities.Set(FS_VNODE_CAPABILITY_SELECT, fFSOps->select);
src/add-ons/kernel/file_systems/userlandfs/server/beos/BeOSKernelVolume.cpp
253
if (!fFSOps->select) {
src/add-ons/kernel/file_systems/userlandfs/server/beos/BeOSKernelVolume.cpp
257
return fFSOps->select(fVolumeCookie, node, cookie, event, 0, sync);
src/add-ons/kernel/file_systems/userlandfs/server/beos/BeOSKernelVolume.cpp
265
if (!fFSOps->select || !fFSOps->deselect)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_interface.h
222
beos_op_select *select;
src/add-ons/kernel/file_systems/userlandfs/server/haiku/HaikuKernelFileSystem.cpp
319
capabilities.Set(FS_VNODE_CAPABILITY_SELECT, ops->select);
src/add-ons/kernel/file_systems/userlandfs/server/haiku/HaikuKernelVolume.cpp
528
if (!node->ops->select) {
src/add-ons/kernel/file_systems/userlandfs/server/haiku/HaikuKernelVolume.cpp
532
return node->ops->select(&fVolume, node, cookie, event, sync);
src/add-ons/kernel/file_systems/userlandfs/server/haiku/HaikuKernelVolume.cpp
542
if (!node->ops->select || !node->ops->deselect)
src/add-ons/mail_daemon/inbound_protocols/imap/IMAPConnectionWorker.cpp
807
IMAP::SelectCommand select(folder.MailboxName().String());
src/add-ons/mail_daemon/inbound_protocols/imap/IMAPConnectionWorker.cpp
809
status_t status = fProtocol.ProcessCommand(select);
src/add-ons/mail_daemon/inbound_protocols/imap/IMAPConnectionWorker.cpp
811
folder.SetUIDValidity(select.UIDValidity());
src/add-ons/mail_daemon/inbound_protocols/imap/IMAPConnectionWorker.cpp
813
*_nextUID = select.NextUID();
src/apps/cortex/DiagramView/DiagramItem.h
112
void select();
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
484
which->select();
src/apps/cortex/MediaRoutingView/MediaWire.cpp
244
outputJack->select();
src/apps/cortex/MediaRoutingView/MediaWire.cpp
249
inputJack->select();
src/apps/haikudepot/textview/TextEditor.cpp
159
bool select = (event.modifiers & B_SHIFT_KEY) != 0;
src/apps/haikudepot/textview/TextEditor.cpp
163
LineUp(select);
src/apps/haikudepot/textview/TextEditor.cpp
167
LineDown(select);
src/apps/haikudepot/textview/TextEditor.cpp
171
if (HasSelection() && !select) {
src/apps/haikudepot/textview/TextEditor.cpp
176
_SetCaretOffset(fSelection.Caret() - 1, true, select, true);
src/apps/haikudepot/textview/TextEditor.cpp
180
if (HasSelection() && !select) {
src/apps/haikudepot/textview/TextEditor.cpp
185
_SetCaretOffset(fSelection.Caret() + 1, true, select, true);
src/apps/haikudepot/textview/TextEditor.cpp
189
LineStart(select);
src/apps/haikudepot/textview/TextEditor.cpp
193
LineEnd(select);
src/apps/haikudepot/textview/TextEditor.cpp
302
TextEditor::LineUp(bool select)
src/apps/haikudepot/textview/TextEditor.cpp
308
_MoveToLine(lineIndex - 1, select);
src/apps/haikudepot/textview/TextEditor.cpp
313
TextEditor::LineDown(bool select)
src/apps/haikudepot/textview/TextEditor.cpp
319
_MoveToLine(lineIndex + 1, select);
src/apps/haikudepot/textview/TextEditor.cpp
324
TextEditor::LineStart(bool select)
src/apps/haikudepot/textview/TextEditor.cpp
330
_SetCaretOffset(fLayout->FirstOffsetOnLine(lineIndex), true, select,
src/apps/haikudepot/textview/TextEditor.cpp
336
TextEditor::LineEnd(bool select)
src/apps/haikudepot/textview/TextEditor.cpp
342
_SetCaretOffset(fLayout->LastOffsetOnLine(lineIndex), true, select,
src/apps/haikudepot/textview/TextEditor.cpp
383
TextEditor::_MoveToLine(int32 lineIndex, bool select)
src/apps/haikudepot/textview/TextEditor.cpp
391
_SetCaretOffset(0, false, select, true);
src/apps/haikudepot/textview/TextEditor.cpp
397
_SetCaretOffset(fDocument->Length(), false, select, true);
src/apps/haikudepot/textview/TextEditor.cpp
414
_SetCaretOffset(textOffset, false, select, true);
src/apps/haikudepot/textview/TextEditor.h
67
void LineUp(bool select);
src/apps/haikudepot/textview/TextEditor.h
68
void LineDown(bool select);
src/apps/haikudepot/textview/TextEditor.h
69
void LineStart(bool select);
src/apps/haikudepot/textview/TextEditor.h
70
void LineEnd(bool select);
src/apps/haikudepot/textview/TextEditor.h
80
void _MoveToLine(int32 lineIndex, bool select);
src/apps/powerstatus/ExtendedInfoWindow.cpp
303
ExtPowerStatusView::Select(bool select)
src/apps/powerstatus/ExtendedInfoWindow.cpp
305
fSelected = select;
src/apps/powerstatus/ExtendedInfoWindow.h
56
virtual void Select(bool select = true);
src/apps/text_search/Grepper.cpp
413
int result = select(maxfd + 1, &readSet, NULL, NULL, &timeout);
src/apps/webpositive/BrowserApp.cpp
333
bool select = false;
src/apps/webpositive/BrowserApp.cpp
334
message->FindBool("select", &select);
src/apps/webpositive/BrowserApp.cpp
335
_CreateNewTab(window, url, select);
src/apps/webpositive/BrowserApp.cpp
612
bool select)
src/apps/webpositive/BrowserApp.cpp
616
window->CreateNewTab(url, select);
src/apps/webpositive/BrowserApp.h
74
const BString& url, bool select);
src/apps/webpositive/BrowserWindow.cpp
1417
BrowserWindow::CreateNewTab(const BString& _url, bool select,
src/apps/webpositive/BrowserWindow.cpp
1436
if (select) {
src/apps/webpositive/BrowserWindow.h
125
void CreateNewTab(const BString& url, bool select,
src/apps/webpositive/support/FontSelectionView.cpp
473
FontSelectionView::_SelectCurrentFont(bool select)
src/apps/webpositive/support/FontSelectionView.cpp
481
item->SetMarked(select);
src/apps/webpositive/support/FontSelectionView.cpp
486
item->SetMarked(select);
src/apps/webpositive/support/FontSelectionView.cpp
493
FontSelectionView::_SelectCurrentSize(bool select)
src/apps/webpositive/support/FontSelectionView.cpp
500
item->SetMarked(select);
src/apps/webpositive/support/FontSelectionView.h
68
void _SelectCurrentFont(bool select);
src/apps/webpositive/support/FontSelectionView.h
69
void _SelectCurrentSize(bool select);
src/bin/debug/strace/events.cpp
376
Syscall *select = get_syscall("_kern_select");
src/bin/debug/strace/events.cpp
377
select->ParameterAt(1)->SetInOut(true);
src/bin/debug/strace/events.cpp
378
select->ParameterAt(2)->SetInOut(true);
src/bin/debug/strace/events.cpp
379
select->ParameterAt(3)->SetInOut(true);
src/bin/network/ftpd/ftpd.c
1991
if (select(pdata+1, &set, NULL, NULL, &timeout) <= 0 ||
src/bin/network/ftpd/ftpd.c
488
nfds = select(maxfd + 1, &readfds, NULL, NULL, 0);
src/bin/network/telnet/network.c
89
value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
src/bin/network/telnet/sys_bsd.c
891
if ((c = select(maxfd + 1, ibitsp, obitsp, xbitsp,
src/bin/network/telnet/utilities.c
867
(void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
src/bin/network/telnet/utilities.c
873
(void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
src/bin/network/telnetd/telnetd.c
986
if ((c = select(nfd, &ibits, &obits, &xbits,
src/bin/network/telnetd/utility.c
105
value = select(s+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
src/bin/network/traceroute/traceroute.c
1270
error = select(sock + 1, fdsp, NULL, NULL, &wait);
src/bin/network/traceroute6/traceroute6.c
782
if (select(sock+1, fdsp, (fd_set *)0, (fd_set *)0, &wait) > 0)
src/kits/interface/ColumnListView.cpp
297
void SetFocusRow(BRow* row, bool select);
src/kits/network/libnetapi/NetEndpoint.cpp
495
status = select(fSocket + 1, &fds, NULL, NULL,
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1069
Id select = how & SOLVER_SELECTMASK;
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1073
if (select == SOLVER_SOLVABLE && fInstalledRepository != NULL
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1082
solver_select2str(fPool, select, what));
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1086
if (select == SOLVER_SOLVABLE
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1094
Element::BType type = select == SOLVER_SOLVABLE_PROVIDES
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1097
solver_select2str(fPool, select, what));
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1103
solver_select2str(fPool, select, what));
src/kits/package/solver/libsolv/LibsolvSolver.cpp
1107
solver_select2str(fPool, select, what));
src/kits/tracker/DirMenu.cpp
183
if (!select)
src/kits/tracker/DirMenu.cpp
87
bool includeStartEntry, bool select, bool reverse, bool addShortcuts,
src/kits/tracker/PoseView.cpp
4031
bool select = true;
src/kits/tracker/PoseView.cpp
4036
if (pose != NULL && pose->IsSelected() != select)
src/kits/tracker/PoseView.cpp
4037
AddRemovePoseFromSelection(pose, index, select);
src/kits/tracker/PoseView.cpp
7924
bool select = !pose->IsSelected() || !extendSelection;
src/kits/tracker/PoseView.cpp
7954
AddRemovePoseFromSelection(poseList->ItemAt(i), i, select);
src/kits/tracker/PoseView.cpp
7979
AddRemovePoseFromSelection(currPose, index, select);
src/kits/tracker/PoseView.cpp
8839
BPoseView::AddRemovePoseFromSelection(BPose* pose, int32 index, bool select)
src/kits/tracker/PoseView.cpp
8842
if (select == pose->IsSelected())
src/kits/tracker/PoseView.cpp
8845
pose->Select(select);
src/kits/tracker/PoseView.cpp
8853
if (select)
src/kits/tracker/PoseView.h
313
bool select);
src/libs/glut/glutEvent.cpp
171
menu->select(win->menuValue);
src/libs/glut/glutMenu.h
35
select = n_select;
src/libs/glut/glutMenu.h
44
GLUTselectCB select; // callback function
src/libs/glut/glutint.h
498
GLUTselectCB select; /* function of menu */
src/libs/libsolv/ext/testcase.c
507
Id select = how & SOLVER_SELECTMASK;
src/libs/libsolv/ext/testcase.c
513
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/ext/testcase.c
518
else if (select == SOLVER_SOLVABLE_NAME)
src/libs/libsolv/ext/testcase.c
523
else if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/ext/testcase.c
528
else if (select == SOLVER_SOLVABLE_ONE_OF)
src/libs/libsolv/ext/testcase.c
547
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/ext/testcase.c
560
else if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/rules.c
1291
Id select, how, what, p, pp;
src/libs/libsolv/solv/rules.c
1300
select = job->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/rules.c
1305
if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/rules.c
1328
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1335
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1585
Id select, p, pp;
src/libs/libsolv/solv/rules.c
1592
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/rules.c
1600
if (select == SOLVER_SOLVABLE_NAME)
src/libs/libsolv/solv/rules.c
1602
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/solv/rules.c
1604
else if ((select == SOLVER_SOLVABLE_NAME || select == SOLVER_SOLVABLE_PROVIDES) && ISRELDEP(what))
src/libs/libsolv/solv/rules.c
1607
if (rd->flags == REL_EQ && select == SOLVER_SOLVABLE_NAME)
src/libs/libsolv/solv/rules.c
1629
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/solv/rules.c
1636
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1651
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/solv/rules.c
1656
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1675
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1694
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1723
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
1759
if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && what == installed->repoid))
src/libs/libsolv/solv/rules.c
1762
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
2901
Id rid, how, what, select;
src/libs/libsolv/solv/rules.c
2923
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/rules.c
2924
if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && what == installed->repoid))
src/libs/libsolv/solv/rules.c
2927
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/rules.c
3303
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/rules.c
3304
if (select == SOLVER_SOLVABLE && pool->solvables[what].repo != installed)
src/libs/libsolv/solv/selection.c
104
FOR_JOB_SELECT(p, pp, select, selection->elements[i + 1])
src/libs/libsolv/solv/selection.c
161
Id select = selection->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
163
if (select == SOLVER_SOLVABLE || select == SOLVER_SOLVABLE_ONE_OF)
src/libs/libsolv/solv/selection.c
172
FOR_JOB_SELECT(p, pp, select, id)
src/libs/libsolv/solv/selection.c
200
else if (select == SOLVER_SOLVABLE_NAME || select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/selection.c
215
if (relflags == REL_EQ && select != SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/selection.c
47
Id select = selection->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
49
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/selection.c
51
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/selection.c
588
Id select = selection->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
595
FOR_JOB_SELECT(p, pp, select, id)
src/libs/libsolv/solv/selection.c
61
FOR_JOB_SELECT(p, pp, select, selection->elements[i + 1])
src/libs/libsolv/solv/selection.c
804
Id select = sel2->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
805
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/selection.c
811
if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/selection.c
821
FOR_JOB_SELECT(p, pp, select, sel2->elements[i + 1])
src/libs/libsolv/solv/selection.c
829
Id select = sel1->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
832
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/selection.c
842
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/selection.c
857
FOR_JOB_SELECT(p, pp, select, sel1->elements[i + 1])
src/libs/libsolv/solv/selection.c
88
Id select = selection->elements[i] & SOLVER_SELECTMASK;
src/libs/libsolv/solv/selection.c
89
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/selection.c
94
if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
2672
Id how, what, select;
src/libs/libsolv/solv/solver.c
2680
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solver.c
2683
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/solver.c
2688
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
2696
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
2929
Id how, what, select, name, weak, p, pp, d;
src/libs/libsolv/solv/solver.c
3084
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solver.c
3088
if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
src/libs/libsolv/solv/solver.c
3090
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3101
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/solver.c
3112
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
3140
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3161
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3193
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solver.c
3198
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3205
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/solver.c
3356
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solver.c
3360
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sinstall %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3363
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/solv/solver.c
3371
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3382
if (select == SOLVER_SOLVABLE_PROVIDES && !d && (p == SYSTEMSOLVABLE || p == -SYSTEMSOLVABLE) && ISRELDEP(what))
src/libs/libsolv/solv/solver.c
3401
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %s%serase %s\n", weak ? "weak " : "", how & SOLVER_CLEANDEPS ? "clean deps " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3405
name = (select == SOLVER_SOLVABLE || (select == SOLVER_SOLVABLE_NAME && ISRELDEP(what))) ? 0 : -1;
src/libs/libsolv/solv/solver.c
3406
if (select == SOLVER_SOLVABLE_ALL) /* hmmm ;) */
src/libs/libsolv/solv/solver.c
3411
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
3418
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3457
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3460
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sverify %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3463
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sweaken deps %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3464
if (select != SOLVER_SOLVABLE)
src/libs/libsolv/solv/solver.c
3470
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %smultiversion %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3473
POOL_DEBUG(SOLV_DEBUG_JOB, "job: %slock %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3474
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/solver.c
3479
else if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
3486
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3490
POOL_DEBUG(SOLV_DEBUG_JOB, "job: distupgrade %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3493
POOL_DEBUG(SOLV_DEBUG_JOB, "job: drop orphaned %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
3494
if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
src/libs/libsolv/solv/solver.c
3496
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
3507
POOL_DEBUG(SOLV_DEBUG_JOB, "job: user installed %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solver.c
4192
Id select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solver.c
4195
if (select == SOLVER_SOLVABLE_ALL || select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solver.c
4199
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.c
4203
FOR_JOB_SELECT(p, pp, select, what)
src/libs/libsolv/solv/solver.h
323
#define FOR_JOB_SELECT(p, pp, select, what) \
src/libs/libsolv/solv/solver.h
324
if (select == SOLVER_SOLVABLE_REPO || select == SOLVER_SOLVABLE_ALL) \
src/libs/libsolv/solv/solver.h
326
else for (pp = (select == SOLVER_SOLVABLE ? 0 : \
src/libs/libsolv/solv/solver.h
327
select == SOLVER_SOLVABLE_ONE_OF ? what : \
src/libs/libsolv/solv/solver.h
329
p = (select == SOLVER_SOLVABLE ? what : pool->whatprovidesdata[pp++]); \
src/libs/libsolv/solv/solver.h
331
if (select == SOLVER_SOLVABLE_NAME && \
src/libs/libsolv/solv/solverdebug.c
653
Id p, rp, element, how, what, select;
src/libs/libsolv/solv/solverdebug.c
666
select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solverdebug.c
670
if (select == SOLVER_SOLVABLE && solv->installed && pool->solvables[what].repo == solv->installed)
src/libs/libsolv/solv/solverdebug.c
672
else if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/solverdebug.c
673
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not install a solvable %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
675
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not install %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
678
if (select == SOLVER_SOLVABLE && !(solv->installed && pool->solvables[what].repo == solv->installed))
src/libs/libsolv/solv/solverdebug.c
680
else if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/solverdebug.c
681
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not deinstall all solvables %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
683
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not deinstall %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
686
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not install most recent version of %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
689
POOL_DEBUG(SOLV_DEBUG_RESULT, " - do not lock %s\n", solver_select2str(pool, select, what));
src/libs/libsolv/solv/solverdebug.c
816
solver_select2str(Pool *pool, Id select, Id what)
src/libs/libsolv/solv/solverdebug.c
820
select &= SOLVER_SELECTMASK;
src/libs/libsolv/solv/solverdebug.c
821
if (select == SOLVER_SOLVABLE)
src/libs/libsolv/solv/solverdebug.c
823
if (select == SOLVER_SOLVABLE_NAME)
src/libs/libsolv/solv/solverdebug.c
825
if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/solverdebug.c
832
if (select == SOLVER_SOLVABLE_ONE_OF)
src/libs/libsolv/solv/solverdebug.c
847
if (select == SOLVER_SOLVABLE_REPO)
src/libs/libsolv/solv/solverdebug.c
853
if (select == SOLVER_SOLVABLE_ALL)
src/libs/libsolv/solv/solverdebug.c
861
Id select = how & SOLVER_SELECTMASK;
src/libs/libsolv/solv/solverdebug.c
871
if (select == SOLVER_SOLVABLE && pool->installed && pool->solvables[what].repo == pool->installed)
src/libs/libsolv/solv/solverdebug.c
873
else if (select == SOLVER_SOLVABLE || select == SOLVER_SOLVABLE_NAME)
src/libs/libsolv/solv/solverdebug.c
875
else if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/solverdebug.c
881
if (select == SOLVER_SOLVABLE && !(pool->installed && pool->solvables[what].repo == pool->installed))
src/libs/libsolv/solv/solverdebug.c
883
else if (select == SOLVER_SOLVABLE_PROVIDES)
src/libs/libsolv/solv/solverdebug.c
916
s = pool_tmpjoin(pool, strstart, solver_select2str(pool, select, what), strend);
src/libs/libsolv/solv/solverdebug.h
41
extern const char *solver_select2str(Pool *pool, Id select, Id what);
src/libs/stdc++/legacy/indstream.cc
78
int select = mode == 0 ? (ios::in|ios::out) : mode;
src/libs/stdc++/legacy/indstream.cc
79
streambuf *gbuf = (select & ios::in) ? get_stream() : (streambuf*)NULL;
src/libs/stdc++/legacy/indstream.cc
80
streambuf *pbuf = (select & ios::out) ? put_stream() : (streambuf*)NULL;
src/libs/stdc++/legacy/indstream.cc
95
int select = mode == 0 ? (ios::in|ios::out) : mode;
src/libs/stdc++/legacy/indstream.cc
96
streambuf *gbuf = (select & ios::in) ? get_stream() : (streambuf*)NULL;
src/libs/stdc++/legacy/indstream.cc
97
streambuf *pbuf = (select & ios::out) ? put_stream() : (streambuf*)NULL;
src/preferences/appearance/FontSelectionView.cpp
232
FontSelectionView::_SelectCurrentFont(bool select)
src/preferences/appearance/FontSelectionView.cpp
240
item->SetMarked(select);
src/preferences/appearance/FontSelectionView.cpp
245
item->SetMarked(select);
src/preferences/appearance/FontSelectionView.h
48
void _SelectCurrentFont(bool select);
src/preferences/filetypes/PreferredAppMenu.cpp
155
BMenuItem* select = NULL;
src/preferences/filetypes/PreferredAppMenu.cpp
169
select = item;
src/preferences/filetypes/PreferredAppMenu.cpp
192
if (select != NULL) {
src/preferences/filetypes/PreferredAppMenu.cpp
195
select->SetMarked(true);
src/preferences/filetypes/TypeListWindow.cpp
90
BMessage select(fWhat);
src/preferences/filetypes/TypeListWindow.cpp
91
select.AddString("type", item->Type());
src/preferences/filetypes/TypeListWindow.cpp
92
fTarget.SendMessage(&select);
src/preferences/time/ntp.cpp
177
status = select(connection + 1, &waitForReceived, NULL, NULL,
src/servers/net/Services.cpp
493
if (select(fMaxSocket, &set, NULL, NULL, NULL) < 0) {
src/system/boot/arch/x86/arch_cpu.cpp
192
uint8 select = channel << PIT_SELECT_CHANNEL_SHIFT;
src/system/boot/arch/x86/arch_cpu.cpp
193
out8(select | PIT_ACCESS_LOW_THEN_HIGH_BYTE | PIT_MODE_INTERRUPT_ON_0
src/system/boot/arch/x86/arch_cpu.cpp
212
out8(select | PIT_ACCESS_LATCH_COUNTER, PIT_CONTROL);
src/system/boot/arch/x86/arch_cpu.cpp
224
out8(select | PIT_ACCESS_LATCH_COUNTER, PIT_CONTROL);
src/system/boot/platform/riscv/FwCfg.cpp
115
dprintf("file.select: %" B_PRIu16 "\n", file.select);
src/system/boot/platform/riscv/FwCfg.cpp
131
Select(file.select);
src/system/boot/platform/riscv/FwCfg.cpp
79
file.select = B_BENDIAN_TO_HOST_INT16(file.select);
src/system/boot/platform/riscv/FwCfg.cpp
83
dprintf("select: %" B_PRIu32 "\n", file.select);
src/system/boot/platform/riscv/FwCfg.cpp
98
file.select = B_BENDIAN_TO_HOST_INT16(file.select);
src/system/boot/platform/riscv/FwCfg.h
39
uint16_t select;
src/system/kernel/device_manager/AbstractModuleDevice.cpp
136
if (Module()->select == NULL)
src/system/kernel/device_manager/AbstractModuleDevice.cpp
138
return Module()->select(cookie, event, sync);
src/system/kernel/device_manager/AbstractModuleDevice.cpp
31
return Module()->select != NULL;
src/system/kernel/device_manager/legacy_drivers.cpp
1356
if (hooks->select != NULL) {
src/system/kernel/device_manager/legacy_drivers.cpp
1363
fDeviceModule->select = (status_t (*)(void*, uint8, selectsync*))~0;
src/system/kernel/device_manager/legacy_drivers.cpp
1381
return Hooks()->select(cookie, event, 0, sync);
src/system/kernel/device_manager/legacy_drivers.cpp
870
kprintf(" select() %p\n", hooks->select);
src/system/kernel/events/select_ops.h
10
status_t (*select)(int32 object, struct select_info* info, bool kernel);
src/system/kernel/events/select_ops.h
46
return kSelectOps[type].select(object, sync, kernel);
src/system/kernel/fs/socket.cpp
294
return sStackInterface->select(FD_SOCKET(descriptor), event, sync);
src/system/kernel/fs/vfs.cpp
5975
if (!HAS_FS_CALL(vnode, select)) {
src/system/kernel/fs/vfs.cpp
5981
status_t result = FS_CALL(vnode, select, descriptor->cookie, event, sync);
src/system/libnetwork/netresolv/resolv/res_send.c
1214
n = select(nfds, rfds, wfds, efds, tvp);
src/tests/add-ons/kernel/drivers/tty/tty-test.cpp
158
int result = select(count, readSet, writeSet, errorSet,
src/tests/system/kernel/select_check.cpp
35
int result = select(3, &readSet, &writeSet, &errorSet, NULL);
src/tests/system/kernel/select_close_test.cpp
37
int result = select(fd + 1, &readSet, NULL, NULL, NULL);
src/tests/system/network/firefox_crash.cpp
106
if (select(listenSocket + 1, &set, NULL, NULL, &tv) < 0)
src/tests/system/network/firefox_crash.cpp
84
if (select(pair[0] + 1, NULL, &set, NULL, &tv) < 0)
src/tests/system/network/multicast/multicat.c
142
res = select(sock + 1, &in, 0, 0, 0);
src/tests/system/network/select_test.c
40
rv = select(s + 1, &fdr, NULL, &fde, &tv);
src/tests/system/network/select_test.c
55
rv = select(s +1, &fdr, &fdw, &fde, NULL);
src/tests/system/network/select_test2.c
51
rv = select(s + 1, &fdr, NULL, &fde, &tv);
src/tests/system/network/select_test2.c
65
rv = select(f +1, &fdr, NULL, NULL, NULL);
src/tests/system/network/select_test_big.c
67
rv = select(max + 1, &fdr, NULL, &fde, &tv);
src/tests/system/network/select_test_big.c
85
rv = select(max +1, &fdr, &fdw, &fde, NULL);