/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
pthread_mutex_timedlock.c | 66 DWORD milliseconds; local 77 milliseconds = INFINITE; 82 * Calculate timeout as milliseconds from current system time. 84 milliseconds = ptw32_relmillisecs (abstime); 87 status = WaitForSingleObject (event, milliseconds);
|
sem_timedwait.c | 148 DWORD milliseconds; local 152 milliseconds = INFINITE; 157 * Calculate timeout as milliseconds from current system time. 159 milliseconds = ptw32_relmillisecs (abstime); 196 result = pthreadCancelableTimedWait (s->sem, milliseconds);
|
/libcore/luni/src/main/java/java/sql/ |
Time.java | 58 * milliseconds. 61 * a {@code Time} specified in milliseconds since the 164 * Sets the time for this {@code Time} object to the supplied milliseconds 168 * A time value expressed as milliseconds since the <i>Epoch</i>. 169 * Negative values are milliseconds before the Epoch. The Epoch
|
/external/chromium_org/chrome/common/extensions/api/ |
web_navigation.json | 126 "timeStamp": {"type": "number", "description": "The time when the browser was about to start the navigation, in milliseconds since the epoch."} 154 "timeStamp": {"type": "number", "description": "The time when the navigation was committed, in milliseconds since the epoch."} 180 "timeStamp": {"type": "number", "description": "The time when the page's DOM was fully constructed, in milliseconds since the epoch."} 206 "timeStamp": {"type": "number", "description": "The time when the document finished loading, in milliseconds since the epoch."} 233 "timeStamp": {"type": "number", "description": "The time when the error occurred, in milliseconds since the epoch."} 260 "timeStamp": {"type": "number", "description": "The time when the browser was about to create a new view, in milliseconds since the epoch."} 288 "timeStamp": {"type": "number", "description": "The time when the navigation was committed, in milliseconds since the epoch."} 304 "timeStamp": {"type": "number", "description": "The time when the replacement happened, in milliseconds since the epoch."} 332 "timeStamp": {"type": "number", "description": "The time when the navigation was committed, in milliseconds since the epoch."}
|
alarms.idl | 12 // Time at which this alarm was scheduled to fire, in milliseconds past the 25 // Time at which the alarm should fire, in milliseconds past the epoch
|
/external/llvm/include/llvm/Support/ |
TimeValue.h | 214 /// @brief Retrieve the fractional part as milliseconds; 215 uint32_t milliseconds() const { function in class:llvm::sys::TimeValue 229 /// Returns the TimeValue as a number of milliseconds. Note that the value 233 /// @brief Convert to a number of milliseconds (can overflow) 309 /// @brief Set the nanoseconds component using a number of milliseconds. 310 void milliseconds ( int32_t millis ) { function in class:llvm::sys::TimeValue 324 void msec( int64_t milliseconds ) { 325 this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND; 326 this->nanos_ = NanoSecondsType(milliseconds % MILLISECONDS_PER_SECOND) *
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
InstallFlowAnalytics.java | 119 * milliseconds. See {@link SystemClock#elapsedRealtime()}. 125 * elapsed realtime milliseconds. See {@link SystemClock#elapsedRealtime()}. 131 * milliseconds. See {@link SystemClock#elapsedRealtime()}. This field is only valid if the 137 * Time instant when this flow terminated, measured in elapsed realtime milliseconds. See 354 * milliseconds. See {@link SystemClock#elapsedRealtime()}. 432 // Total elapsed time from start to end, in milliseconds. 437 // obtained, in milliseconds. 443 // Total elapsed time from start till Install button clicked, in milliseconds 444 // milliseconds.
|
/external/apache-http/src/org/apache/http/params/ |
HttpConnectionParams.java | 56 * Returns the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 61 * @return timeout in milliseconds 71 * Sets the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 76 * @param timeout Timeout in milliseconds 166 * @return timeout in milliseconds. 180 * @param timeout Timeout in milliseconds.
|
/external/libnfc-nxp/inc/ |
phNfcConfig.h | 198 /**< Presence check interval in milliseconds */ 204 timer resolution is 500 milliseconds */ 214 1000 is in milliseconds */ 221 1000 is in milliseconds */ 227 150 is in milliseconds */ 234 120000 is in milliseconds */
|
/external/bluetooth/bluedroid/bta/sys/ |
ptim.c | 35 ** period is the GKI timer period in milliseconds. Parameter 68 convert back to milliseconds before updating timer list */
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
audiomonitor.cc | 51 void AudioMonitor::Start(int milliseconds) { 52 rate_ = milliseconds;
|
mediamonitor.cc | 54 void MediaMonitor::Start(uint32 milliseconds) { 55 rate_ = milliseconds;
|
/external/chromium_org/chrome/browser/policy/cloud/ |
cloud_policy_refresh_scheduler.h | 95 // Schedules a policy refresh to happen after |delta_ms| milliseconds, 121 // Error retry delay in milliseconds.
|
/external/chromium_org/content/browser/resources/media/ |
data_series.js | 81 * points, starting at |startTime|, and |stepSize| milliseconds apart. 123 * milliseconds since the Unix epoch, and a numeric value.
|
/external/chromium_org/ppapi/api/ |
ppb_core.idl | 71 * thread with a delay of 0 milliseconds, will never directly invoke the 78 * @param[in] delay_in_milliseconds An int32_t delay in milliseconds.
|
/external/chromium_org/ppapi/c/ |
ppb_core.h | 84 * thread with a delay of 0 milliseconds, will never directly invoke the 91 * @param[in] delay_in_milliseconds An int32_t delay in milliseconds.
|
/external/chromium_org/ppapi/cpp/ |
core.h | 76 /// thread with a delay of 0 milliseconds, will never directly invoke the 83 /// @param[in] delay_in_milliseconds An int32_t delay in milliseconds.
|
/external/chromium_org/remoting/proto/ |
video.proto | 93 // Time in milliseconds spent in capturing this video frame. 96 // Time in milliseconds spent in encoding this video frame.
|
/external/chromium_org/remoting/webapp/ |
stats_accumulator.js | 62 * Gets the number of milliseconds since the first value was added to this 65 * @return {number} milliseconds since the first value
|
/external/chromium_org/sync/protocol/ |
nigori_specifics.proto | 107 // The time (in epoch milliseconds) at which the keystore migration was 111 // The time (in epoch milliseconds) at which a custom passphrase was set.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPerformance.cpp | 40 static double millisecondsToSeconds(unsigned long long milliseconds) 42 return static_cast<double>(milliseconds / 1000.0);
|
/external/chromium_org/third_party/icu/source/i18n/ |
gregoimp.h | 111 * The minimum supported epoch milliseconds. This value is equivalent 123 * The maximum supported epoch milliseconds. This value is equivalent 196 * Convert a 1970-epoch milliseconds to proleptic Gregorian year, 198 * @param time 1970-epoch milliseconds 227 * Converts Julian day to time as milliseconds. 229 * @return time as milliseconds. 235 * Converts time as milliseconds to Julian day. 236 * @param millis the given milliseconds.
|
vzone.h | 177 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 196 * @param millis The reference date's milliseconds in day, local standard time 198 * @return The offset in milliseconds to add to GMT to get local time. 219 * @param millis The reference date's milliseconds in day, local standard time 222 * @return The offset in milliseconds to add to GMT to get local time. 239 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT 258 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add 269 * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
rbtz.h | 125 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 143 * @param millis The reference date's milliseconds in day, local standard time 145 * @return The offset in milliseconds to add to GMT to get local time. 164 * @param millis The reference date's milliseconds in day, local standard time 167 * @return The offset in milliseconds to add to GMT to get local time. 182 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT 200 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add 209 * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
timing.cc | 77 // Convert from second (1.0) and milliseconds (1e-3). 121 // The unit is in milliseconds.
|