Searched refs:time (Results 1 - 25 of 504) sorted by last modified time

1234567891011>>

/haiku/src/kits/tracker/
H A DWidgetAttributeText.cpp187 // If we couldn't fit the date, try with just the time
188 // TODO we could use only the time for "today" dates
1681 tmp.time_tt = parsedate(textView->Text(), time(0));
1771 int64 time = 0; local
1775 time = fValue.time_tt * 1000000LL;
1779 time = fValue.int8t * 1000000LL;
1783 time = fValue.int16t * 1000000LL;
1787 time = fValue.int32t * 1000000LL;
1791 time = fValue.int64t;
1796 int32 seconds = time / 100000
[all...]
H A DUtilities.cpp44 #include <time.h>
1041 // get creation time and fs_info
1051 // creation time
1082 // Old style volume identifiers: We have only creation time and
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp11 #include <time.h>
216 time_t time; local
227 time = -1;
229 time = *static_cast<const time_t*>(pointer);
239 if (time != -1) {
241 if (BDateTimeFormat().Format(timeString, time, DATE_FORMAT,
310 time_t now = time(NULL);
/haiku/src/apps/mediaplayer/
H A DController.cpp739 int time = (int)((float)lastFrame * TimeDuration() / (1000000 * _FrameDuration())); local
741 item->Name().String(), time / 60, time % 60);
1089 // that the view of the current frame/time from the outside
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp550 PROGRESS("Pushing user event for %.4f, time now %.4f\n",
768 uint32 time = real_time_clock(); local
771 strcat(s, ctime((const time_t*)&time));
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp16 #include <time.h>
619 // Kernel build time/date
1234 bigtime_t now = (bigtime_t)time(NULL) * 1000000;
1585 time_t time = ::time(NULL); local
1586 struct tm* tm = localtime(&time);
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp15 #include <sys/time.h>
/haiku/src/kits/interface/
H A DColumnTypes.cpp254 BDateField::BDateField(time_t* time) argument
256 fTime(*localtime(time)),
257 fUnixTime(*time),
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A Dkernel_interface.cpp29 #include <time.h>
1270 // time and for iterators there is a separate locking.
1340 // time and for iterators there is a separate locking.
1388 // No locking needed, since the Node is guaranteed to live at this time
1402 // No locking needed, since the Node is guaranteed to live at this time
1458 // No locking needed, since the Node is guaranteed to live at this time
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dpcm.c25 bigtime_t time; member in struct:audio_buffer_header
253 /* here, we should snooze for 16 samples' time, then un-mute the PCM output */
420 set_direct(port->card, 0x08, (val<<2)|val, 0x0f); /* MCE -- may take time to take effect */
503 /* initialize device first time */
756 ((sv_timing *)data)->time = port->rd_time;
772 ((sv_timing *)data)->time = port->wr_time;
1073 buf->time = port->wr_time;
1081 buf->time = port->rd_time;
1596 /* interrupt in time, we check which half is currently being */
1697 /* time stam
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp148 bigtime_t* time);
165 int64_t _ConvertToStreamTimeBase(bigtime_t time) const;
166 bigtime_t _ConvertFromStreamTimeBase(int64_t time) const;
445 int64_t time = fStream->duration; local
447 time += fStream->start_time;
448 return _ConvertFromStreamTimeBase(time);
457 StreamBase::Seek(uint32 flags, int64* frame, bigtime_t* time) argument
472 *frame, *time);
476 // Seeking is always based on time, initialize it when client seeks
478 *time
1407 Seek(uint32 flags, int64* frame, bigtime_t* time) argument
1753 Seek(void* _cookie, uint32 seekTo, int64* frame, bigtime_t* time) argument
1762 FindKeyFrame(void* _cookie, uint32 flags, int64* frame, bigtime_t* time) argument
[all...]
H A DAVCodecDecoder.cpp266 AVCodecDecoder::SeekedTo(int64 frame, bigtime_t time) argument
673 variable execution time of this function.
901 - fRawDecodedAudio->pkt_dts: Start time of first audio frame
915 3. The audio frame rate is known so that we can calculate the time
928 with the time range covered by the moved audio frames.
1022 // Start time of buffer is updated in case that it contains
1025 // Start time of fTempPacket is updated in case the fTempPacket
1033 (fChunkBuffer) at the right time and of calling FFMPEG often engouh until
1182 - fRawDecodedAudio->pkt_dts: Start time of first audio frame
1208 variable execution time o
[all...]
/haiku/src/tools/fs_shell/
H A Dfssh.cpp14 #include <time.h>
352 // get time
353 struct tm time; local
355 localtime_r(&fileTime, &time);
415 1900 + time.tm_year, 1 + time.tm_mon, time.tm_mday,
416 time.tm_hour, time.tm_min, time
[all...]
/haiku/src/bin/pkgman/
H A DPackageManager.cpp203 const bigtime_t time = system_time(); local
204 if (time != fLastRateCalcTime) {
206 / (time - fLastRateCalcTime);
208 fLastRateCalcTime = time;
/haiku/src/servers/package/
H A DCommitTransactionHandler.cpp457 // use the modification time of the old activations file, if possible
463 stateTime = time(NULL);
467 // construct a nice name from the date and time
/haiku/src/apps/terminal/
H A DTermWindow.cpp24 #include <time.h>
1381 // If it's the first time we're called, setup the window
/haiku/src/apps/haikudepot/server/
H A DServerRepositoryDataUpdateProcess.cpp9 #include <time.h>
H A DServerReferenceDataUpdateProcess.cpp11 #include <time.h>
H A DServerPkgDataUpdateProcess.cpp11 #include <time.h>
H A DWebAppInterface.cpp1194 uint64 now = static_cast<uint64>(time(NULL)) * 1000;
/haiku/src/apps/haikudepot/model/
H A DModel.cpp14 #include <time.h>
541 // time when they have not been accessed/displayed in the UI. Otherwise
/haiku/headers/compatibility/bsd/sys/
H A Dtime.h9 #include_next <sys/time.h>
/haiku/src/apps/deskbar/
H A DSwitcher.cpp572 bigtime_t time; local
573 message->FindInt64("when", (int64*)&time);
579 if (time < fSkipUntil)
587 if (time > fSkipUntil) {
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c3020 /* Do nothing if the time event has already ended. */
7041 /* adaptive dwell max budget time [TU] for full scan */
7043 /* adaptive dwell max budget time [TU] for directed scan */
8173 * by "protecting" the session with a time event.
8964 DPRINTF(("MCC status=0x%x mcc=0x%x cap=0x%x time=0x%x geo_info=0x%x source_id=0x%d n_channels=%u\n",
8965 resp->status, resp->mcc, resp->cap, resp->time, resp->geo_info, resp->source_id, resp->n_channels));
8985 * reporting command at init time.
9490 uint32_t u_timestamp; /* indicate when the date and time of the
9658 printf("%s: %08X | beacon time\n", DEVNAME(sc), table.bcon_time);
9661 printf("%s: %08X | time gp
[all...]
/haiku/src/preferences/locale/
H A DFormatSettingsView.cpp375 time_t timeValue = (time_t)time(NULL);

Completed in 197 milliseconds

1234567891011>>