Searched refs:timestamp (Results 1 - 25 of 69) sorted by relevance

123

/haiku/src/add-ons/kernel/file_systems/udf/
H A DUtils.cpp92 decode_time(timestamp &timestamp, struct timespec &timespec) argument
94 DEBUG_INIT_ETC(NULL, ("timestamp: (tnt: 0x%x, type: %d, timezone: %d = 0x%x, year: %d, "
95 "month: %d, day: %d, hour: %d, minute: %d, second: %d)", timestamp.type_and_timezone(),
96 timestamp.type(), timestamp.timezone(),
97 timestamp.timezone(),timestamp.year(),
98 timestamp.month(), timestamp
[all...]
H A DUtils.h12 class timestamp;
19 status_t decode_time(timestamp &timestamp, struct timespec &timespec);
H A DUdfStructures.h78 class timestamp { class
89 timestamp() { _clear(); } function in class:timestamp
90 timestamp(time_t time);
734 const timestamp& recording_date_and_time() const { return _recording_date_and_time; }
735 timestamp& recording_date_and_time() { return _recording_date_and_time; }
803 timestamp _recording_date_and_time;
1435 timestamp& recording_time() { return _recording_time; }
1436 const timestamp& recording_time() const { return _recording_time; }
1504 timestamp _recording_time;
1551 const timestamp
[all...]
/haiku/src/servers/midi/
H A DPortDrivers.cpp102 bigtime_t timestamp = system_time(); local
116 SpraySystemRealTime(next, timestamp);
120 SpraySystemExclusive(sysexBuf, sysexSize, timestamp);
133 SpraySystemRealTime(next, timestamp);
162 SpraySystemCommon(next, 0, 0, timestamp);
193 timestamp);
198 timestamp);
203 timestamp);
208 timestamp);
213 timestamp);
[all...]
/haiku/src/apps/soundrecorder/
H A DScopeView.h24 void SetMainTime(bigtime_t timestamp);
25 void SetLeftTime(bigtime_t timestamp);
26 void SetRightTime(bigtime_t timestamp);
27 void SetTotalTime(bigtime_t timestamp, bool reset);
H A DTrackSlider.h41 void SetMainTime(bigtime_t timestamp, bool reset);
42 void SetTotalTime(bigtime_t timestamp, bool reset);
49 void _DrawCounter(bigtime_t timestamp, float position, bool isTracking);
51 void _TimeToString(bigtime_t timestamp, char *string);
H A DScopeView.cpp219 ScopeView::SetMainTime(bigtime_t timestamp) argument
221 fMainTime = timestamp;
228 ScopeView::SetTotalTime(bigtime_t timestamp, bool reset) argument
230 fTotalTime = timestamp;
242 ScopeView::SetLeftTime(bigtime_t timestamp) argument
244 fLeftTime = timestamp;
251 ScopeView::SetRightTime(bigtime_t timestamp) argument
253 fRightTime = timestamp;
H A DTrackSlider.cpp128 TrackSlider::_DrawCounter(bigtime_t timestamp, float position, bool isTracking) argument
138 _TimeToString(timestamp, string);
403 TrackSlider::_TimeToString(bigtime_t timestamp, char *string) argument
405 uint32 hours = timestamp / 3600000000LL;
406 timestamp -= hours * 3600000000LL;
407 uint32 minutes = timestamp / 60000000LL;
408 timestamp -= minutes * 60000000LL;
409 uint32 seconds = timestamp / 1000000LL;
410 timestamp -= seconds * 1000000LL;
411 uint32 centiseconds = timestamp / 1000
418 SetMainTime(bigtime_t timestamp, bool reset) argument
436 SetTotalTime(bigtime_t timestamp, bool reset) argument
[all...]
/haiku/src/servers/mail/
H A DErrorLogWindow.h11 void AddError(alert_type type,const char *message,const char *tag = NULL,bool timestamp = true);
H A DErrorLogWindow.cpp13 Error(BRect rect,alert_type type,const char *tag,const char *message,bool timestamp,rgb_color bkg);
67 ErrorLogWindow::AddError(alert_type type, const char *message, const char *tag, bool timestamp) argument
80 panel->add_next_at + 1), type, tag, message, timestamp,
145 bool timestamp,rgb_color bkg)
179 if (timestamp) {
144 Error(BRect rect, alert_type atype, const char *tag, const char *message, bool timestamp,rgb_color bkg) argument
/haiku/headers/private/device/
H A Djoystick_driver.h16 bigtime_t timestamp; member in struct:_joystick
33 bigtime_t timestamp; /* system_time when it was read */ member in struct:_extended_joystick
52 data_size = sizeof(bigtime_t) // timestamp
62 timestamp = (bigtime_t *)data;
63 buttons = (uint32 *)&timestamp[1];
83 bigtime_t * timestamp; member in struct:_variable_joystick
90 // bigtime_t timestamp;
139 The "timestamp" should be the duration of the feedback. Successive writes will be queued
/haiku/src/libs/mapm/
H A Dmapm_rnd.c250 time_t timestamp; local
261 timestamp = timebuffer.time;
262 ul = (unsigned long)(timestamp / 7);
263 ul += timestamp + 537;
264 strcpy(ss,ctime(&timestamp)); /* convert to string and copy to ss */
/haiku/headers/private/input/
H A Dkeyboard_mouse_driver.h76 bigtime_t timestamp; member in struct:__anon2
96 bigtime_t timestamp; member in struct:__anon4
117 bigtime_t timestamp; member in struct:__anon5
/haiku/src/apps/cortex/addons/common/
H A DSoundUtils.h64 bigtime_t timestamp, void * data, size_t datasize,
/haiku/src/apps/cortex/support/
H A DSoundUtils.h64 bigtime_t timestamp, void * data, size_t datasize,
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DTabletProtocolHandler.cpp315 bigtime_t timestamp = system_time(); local
318 if (fLastClickTime + fClickSpeed > timestamp)
324 fLastClickTime = timestamp;
332 if (fLastClickTime + fClickSpeed > timestamp)
354 info->timestamp = timestamp;
H A DMouseProtocolHandler.cpp239 bigtime_t timestamp = system_time(); local
242 if (fLastClickTime + fClickSpeed > timestamp)
248 fLastClickTime = timestamp;
261 info->timestamp = timestamp;
/haiku/src/add-ons/input_server/devices/mouse/
H A Dmovement_maker.cpp228 movement->timestamp = system_time();
230 if ((movement->timestamp - fTapTime) > fTapTimeOUT) {
235 || (movement->timestamp - fTapTime) > 2 * fTapTimeOUT) {
339 if (fClickLastTime + click_speed > movement->timestamp)
344 fClickLastTime = movement->timestamp;
368 && (movement->timestamp - fTapTime) < fTapTimeOUT) {
373 if ((movement->timestamp - fTapTime) > fTapTimeOUT) {
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp269 if ((movements.timestamp - last_click_time) <= dev->settings.click_speed)
274 last_click_time = movements.timestamp;
280 message->AddInt64("when", movements.timestamp);
337 message->AddInt64("when", movements.timestamp);
349 message->AddInt64("when", movements.timestamp);
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp249 movements.timestamp = system_time();
267 if(lastClickTimeStamp + owner->fClickSpeed <= movements.timestamp)
271 lastClickTimeStamp = movements.timestamp;
278 message->AddInt64("when", movements.timestamp);
288 message->AddInt64("when", movements.timestamp);
308 message->AddInt64("when", movements.timestamp);
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmidi.cpp114 LONGLONG timestamp; local
122 err = card->pEG->ReadMidiByte(&card->midi.context, midiData, timestamp);
/haiku/headers/private/netservices2/
H A DHttpTime.h65 BString format_http_time(BDateTime timestamp,
/haiku/src/add-ons/kernel/file_cache/
H A Dlog.cpp50 bigtime_t timestamp; member in struct:cache_log
90 log->timestamp = system_time();
116 log->timestamp = system_time();
276 log->team, log->timestamp, log->team_name,
304 log->team, log->timestamp, log->team_name, log->type,
311 log->team, log->timestamp, log->team_name, log->action, log->type, log->device,
/haiku/src/system/kernel/arch/x86/
H A Darch_system_info.cpp154 bigtime_t timestamp = gCPU[cpu].arch.perf_timestamp; local
156 if (timestamp2 - timestamp < 100) {
/haiku/src/kits/network/libnetservices2/
H A DHttpTime.cpp67 return "A HTTP timestamp cannot be empty";
69 return "The HTTP timestamp string does not match the expected format";
229 BPrivate::Network::format_http_time(BDateTime timestamp, BHttpTimeFormat outputFormat) argument
231 BHttpTime httpTime(timestamp);

Completed in 163 milliseconds

123