Searched refs:timeoutSecs (Results 1 – 3 of 3) sorted by relevance
311 bool dng_condition::Wait (dng_mutex &mutex, double timeoutSecs) in Wait() argument326 if (timeoutSecs < 0) in Wait()340 timeoutSecs += now.tv_sec; in Wait()341 timeoutSecs += now.tv_nsec / 1000000000.0; in Wait()343 now.tv_sec = (long) timeoutSecs; in Wait()344 now.tv_nsec = (long) ((timeoutSecs - now.tv_sec) * 1000000000); in Wait()
149 bool Wait (dng_mutex &mutex, double timeoutSecs = -1.0);
352 int timeoutSecs = data.readBits(8); in parsePageComposition() local368 return new PageComposition(timeoutSecs, version, state, regions); in parsePageComposition()929 public PageComposition(int timeoutSecs, int version, int state, in PageComposition() argument931 this.timeOutSecs = timeoutSecs; in PageComposition()