/haiku/src/system/kernel/events/ |
H A D | wait_for_objects.cpp | 55 selectsync *sync; member 367 wait_for_objects_sync* sync = new(nothrow) wait_for_objects_sync; in create_select_sync() local 368 if (sync == NULL) in create_select_sync() 370 ObjectDeleter<wait_for_objects_sync> syncDeleter(sync); in create_select_sync() 373 sync->set = new(nothrow) select_info[numFDs]; in create_select_sync() 374 if (sync->set == NULL) in create_select_sync() 376 ArrayDeleter<select_info> setDeleter(sync->set); in create_select_sync() 379 sync->sem = create_sem(0, "select"); in create_select_sync() 380 if (sync->sem < 0) in create_select_sync() 381 return sync->sem; in create_select_sync() [all …]
|
H A D | select_ops.h | 42 select_object(uint32 type, int32 object, struct select_info* sync, bool kernel) in select_object() argument 46 return kSelectOps[type].select(object, sync, kernel); in select_object() 51 deselect_object(uint32 type, int32 object, struct select_info* sync, bool kernel) in deselect_object() argument 55 return kSelectOps[type].deselect(object, sync, kernel); in deselect_object()
|
/haiku/src/add-ons/accelerants/neomagic/ |
H A D | valid_mode_list | 6 * h-sync pulse start 7 * h-sync pulse end 10 * v-sync pulse start 11 * v-sync pulse end 13 * sync polarity (0 is -ve,B_POSITIVE_HYSNC,B_POSITIVE_VSYNC)
|
/haiku/src/add-ons/accelerants/via/ |
H A D | valid_mode_list | 6 * h-sync pulse start 7 * h-sync pulse end 10 * v-sync pulse start 11 * v-sync pulse end 13 * sync polarity (0 is -ve,B_POSITIVE_HYSNC,B_POSITIVE_VSYNC)
|
/haiku/src/add-ons/accelerants/skeleton/ |
H A D | valid_mode_list | 6 * h-sync pulse start 7 * h-sync pulse end 10 * v-sync pulse start 11 * v-sync pulse end 13 * sync polarity (0 is -ve,B_POSITIVE_HYSNC,B_POSITIVE_VSYNC)
|
/haiku/src/system/libroot/os/arch/ppc/ |
H A D | atomic.S | 22 sync 27 sync 32 sync
|
/haiku/src/add-ons/kernel/file_systems/fat/settings/ |
H A D | dos | 13 # sync mode: 14 # 0 = (default) no sync after each operation 15 # 1 = sync after each operation on removable media only 16 # 2 = sync after each operation always
|
/haiku/src/system/kernel/device_manager/ |
H A D | AbstractModuleDevice.cpp | 134 AbstractModuleDevice::Select(void* cookie, uint8 event, selectsync* sync) in Select() argument 137 return BaseDevice::Select(cookie, event, sync); in Select() 138 return Module()->select(cookie, event, sync); in Select() 143 AbstractModuleDevice::Deselect(void* cookie, uint8 event, selectsync* sync) in Deselect() argument 146 return BaseDevice::Deselect(cookie, event, sync); in Deselect() 147 return Module()->deselect(cookie, event, sync); in Deselect()
|
H A D | BaseDevice.cpp | 103 BaseDevice::Select(void* cookie, uint8 event, selectsync* sync) in Select() argument 110 BaseDevice::Deselect(void* cookie, uint8 event, selectsync* sync) in Deselect() argument
|
H A D | FileDevice.h | 42 virtual status_t Select(void* cookie, uint8 event, selectsync* sync); 44 selectsync* sync);
|
H A D | BaseDevice.h | 43 virtual status_t Select(void* cookie, uint8 event, selectsync* sync); 45 selectsync* sync);
|
H A D | AbstractModuleDevice.h | 41 virtual status_t Select(void* cookie, uint8 event, selectsync* sync); 43 selectsync* sync);
|
/haiku/headers/private/kernel/ |
H A D | wait_for_objects.h | 19 struct select_sync* sync; member 39 extern void acquire_select_sync(select_sync* sync); 40 extern void put_select_sync(select_sync* sync);
|
/haiku/3rdparty/mmu_man/scripts/ |
H A D | myupdate.sh | 20 sync 24 sync 33 sync
|
H A D | bootstrap-haiku.sh | 57 sync 59 sync 62 sync
|
/haiku/src/tools/fs_shell/ |
H A D | fd.h | 32 uint32_t ref, struct select_sync *sync); 34 struct select_sync *sync); 90 struct select_sync *sync, bool kernel); 92 struct select_sync *sync, bool kernel);
|
/haiku/data/catalogs/apps/softwareupdater/ |
H A D | en_GB.catkeys | 3 …sync:\n\tSynchronizes the installed packages with the repositories. SoftwareUpdaterWindow Please … 4 …sync - Synchronize the installed packages with the repositories.\n\nOptions:\n -h or --help …
|
/haiku/headers/private/kernel/fs/ |
H A D | select_sync_pool.h | 19 status_t add_select_sync_pool_entry(select_sync_pool **pool, selectsync *sync, 22 selectsync *sync, uint8 event);
|
/haiku/docs/user/graphics/ |
H A D | Accelerant.dox | 53 Specifies a positive horizontal sync polarity. 61 Specifies a positive vertical sync polarity. 69 Specifies that sync on green is used (sometimes called SOG or RGsB) 114 Horizontal sync start in pixels. 122 Horizontal sync end in pixels. 146 Vertical sync start line. 154 Vertical sync end line. 170 Timing flags, for sync polarity, interlaced, double scan etc.
|
/haiku/src/add-ons/kernel/drivers/power/acpi_lid/ |
H A D | acpi_lid.cpp | 150 acpi_lid_select(void *_cookie, uint8 event, selectsync *sync) in acpi_lid_select() argument 158 status_t error = add_select_sync_pool_entry(&device->select_pool, sync, in acpi_lid_select() 166 notify_select_event(sync, event); in acpi_lid_select() 173 acpi_lid_deselect(void *_cookie, uint8 event, selectsync *sync) in acpi_lid_deselect() argument 180 return remove_select_sync_pool_entry(&device->select_pool, sync, event); in acpi_lid_deselect()
|
/haiku/src/libs/stdc++/legacy/ |
H A D | indstream.cc | 109 int indirectbuf::sync() in sync() function in indirectbuf 112 int get_ret_val = gbuf ? gbuf->sync() : 0; in sync() 114 int put_ret_val = (pbuf && pbuf != gbuf) ? pbuf->sync() : 0; in sync()
|
/haiku/src/add-ons/kernel/bus_managers/random/ |
H A D | driver.cpp | 153 random_select(void *cookie, uint8 event, selectsync *sync) in random_select() argument 159 notify_select_event(sync, event); in random_select() 162 notify_select_event(sync, event); in random_select() 169 random_deselect(void *cookie, uint8 event, selectsync *sync) in random_deselect() argument
|
/haiku/src/add-ons/kernel/drivers/ports/usb_serial/ |
H A D | Driver.cpp | 278 usb_serial_select(void *cookie, uint8 event, uint32 ref, selectsync *sync) in usb_serial_select() argument 281 cookie, event, ref, sync); in usb_serial_select() 283 status_t status = device->Select(event, ref, sync); in usb_serial_select() 291 usb_serial_deselect(void *cookie, uint8 event, selectsync *sync) in usb_serial_deselect() argument 294 cookie, event, sync); in usb_serial_deselect() 296 status_t status = device->DeSelect(event, sync); in usb_serial_deselect()
|
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/ |
H A D | FileSystem.h | 95 status_t AddSelectSyncEntry(selectsync* sync); 96 void RemoveSelectSyncEntry(selectsync* sync); 97 bool KnowsSelectSyncEntry(selectsync* sync);
|
/haiku/src/add-ons/kernel/drivers/power/acpi_button/ |
H A D | acpi_button.cpp | 202 acpi_button_select(void *_cookie, uint8 event, selectsync *sync) in acpi_button_select() argument 210 status_t error = add_select_sync_pool_entry(&device->select_pool, sync, in acpi_button_select() 218 notify_select_event(sync, event); in acpi_button_select() 225 acpi_button_deselect(void *_cookie, uint8 event, selectsync *sync) in acpi_button_deselect() argument 232 return remove_select_sync_pool_entry(&device->select_pool, sync, event); in acpi_button_deselect()
|