Searched refs:sync (Results 26 - 50 of 144) sorted by relevance

123456

/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DDriver.cpp278 usb_serial_select(void *cookie, uint8 event, uint32 ref, selectsync *sync) argument
281 cookie, event, ref, sync);
283 status_t status = device->Select(event, ref, sync);
291 usb_serial_deselect(void *cookie, uint8 event, selectsync *sync) argument
294 cookie, event, sync);
296 status_t status = device->DeSelect(event, sync);
H A DSerialDevice.h65 status_t Select(uint8 event, uint32 ref, selectsync *sync);
66 status_t DeSelect(uint8 event, selectsync *sync);
/haiku/headers/private/net/
H A Dnet_stack_interface.h72 struct selectsync *sync);
74 struct selectsync *sync);
H A Dnet_socket.h88 struct selectsync* sync);
90 struct selectsync* sync);
/haiku/headers/private/fs_shell/
H A Dfssh_drivers.h29 uint32_t ref, fssh_selectsync *sync);
31 fssh_selectsync *sync);
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DDriver.h157 status_t pc_serial_select(void *cookie, uint8 event, uint32 ref, selectsync *sync);
158 status_t pc_serial_deselect(void *coookie, uint8 event, selectsync *sync);
H A DSerialDevice.h56 status_t Select(uint8 event, uint32 ref, selectsync *sync);
57 status_t DeSelect(uint8 event, selectsync *sync);
/haiku/headers/os/drivers/
H A DDrivers.h33 selectsync *sync);
35 selectsync *sync);
H A Ddevice_manager.h186 status_t (*select)(void *cookie, uint8 event, selectsync *sync);
187 status_t (*deselect)(void *cookie, uint8 event, selectsync *sync);
/haiku/headers/private/kernel/fs/
H A Dfd.h35 struct selectsync *sync);
37 struct selectsync *sync);
/haiku/headers/cpp/
H A Dbuiltinbuf.h48 virtual int sync();
H A Dindstream.h72 virtual int sync();
H A Dstdiostream.h51 virtual int sync();
/haiku/src/add-ons/kernel/network/stack/
H A Dstack_interface.cpp225 stack_interface_select(net_socket* socket, uint8 event, struct selectsync* sync) argument
227 return gNetSocketModule.request_notification(socket, event, sync);
233 struct selectsync* sync)
235 return gNetSocketModule.cancel_notification(socket, event, sync);
232 stack_interface_deselect(net_socket* socket, uint8 event, struct selectsync* sync) argument
/haiku/src/add-ons/print/transports/shared/
H A DSocketStream.h19 virtual int sync();
/haiku/src/libs/stdc++/legacy/
H A Dbuiltinbuf.cc46 int builtinbuf::sync() { return _IO_SYNC (this); } function in class:builtinbuf
H A Dstdiostream.cc113 int stdiobuf::sync() function in class:stdiobuf
H A Dstreambuf.cc91 int streambuf::sync() function in class:streambuf
103 if (sync() == EOF)
172 { return ((streambuf*)fp)->sync(); }
198 JUMP_INIT(sync, _IO_sb_sync),
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DSerialMouse.cpp50 the sync[] is a protocol-identification/sync thingy:
52 if ((read_byte[0] & sync[0]) == sync[1]) then we are at the beggining of the
53 a packet. Next data bytes are OK... if ((read_byte[i] & sync[2]) == 0))
58 uint8 sync[3]; member in struct:mouse_protocol
308 return B_ERROR; // not enough, or out-of-sync, data.
324 // sync with data stream, if not, just skip data until we regain sync.
351 if ((c & mp[fMouseID].sync[
[all...]
/haiku/headers/private/app/
H A DServerProtocolStructs.h65 bool sync; member in struct:ViewSetViewCursorInfo
/haiku/src/add-ons/kernel/bus_managers/random/
H A Ddriver.cpp153 random_select(void *cookie, uint8 event, selectsync *sync) argument
159 notify_select_event(sync, event);
162 notify_select_event(sync, event);
169 random_deselect(void *cookie, uint8 event, selectsync *sync) argument
/haiku/src/add-ons/kernel/network/devices/tunnel/
H A Dtunnel.cpp230 tunnel_select(void* _cookie, uint8 event, uint32 ref, selectsync* sync) argument
238 status_t status = add_select_sync_pool_entry(&cookie->device->select_pool, sync, event);
245 notify_select_event(sync, event);
247 notify_select_event(sync, event);
254 tunnel_deselect(void* _cookie, uint8 event, selectsync* sync) argument
261 return remove_select_sync_pool_entry(&cookie->device->select_pool, sync, event);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp258 // create the select sync entry map
463 FileSystem::AddSelectSyncEntry(selectsync* sync) argument
466 int32* count = fSelectSyncs->Get(sync);
471 status_t error = fSelectSyncs->Put(sync, count);
483 FileSystem::RemoveSelectSyncEntry(selectsync* sync) argument
486 if (int32* count = fSelectSyncs->Get(sync)) {
488 fSelectSyncs->Remove(sync);
497 FileSystem::KnowsSelectSyncEntry(selectsync* sync) argument
499 return fSelectSyncs->ContainsKey(sync);
/haiku/src/add-ons/kernel/generic/tty/
H A Dtty_private.h165 selectsync *sync);
166 extern status_t tty_deselect(tty_cookie *cookie, uint8 event, selectsync *sync);
/haiku/headers/private/userlandfs/legacy/
H A Dfsproto.h119 uint32 ref, selectsync *sync);
121 selectsync *sync);
200 op_sync *sync; member in struct:vnode_ops
240 extern _IMPEXP_KERNEL void notify_select_event(selectsync *sync, uint32 ref);

Completed in 162 milliseconds

123456