HomeSort by relevance Sort by last modified time
    Searched full:ptimer (Results 1 - 18 of 18) sorted by null

  /external/srec/portable/include/
ptimer.h 2 * ptimer.h *
29 * @addtogroup PTimerModule PTimer API functions
37 typedef struct PTimer_t PTimer;
42 * @param timer PTimer handle.
44 PORTABLE_API ESR_ReturnCode PTimerCreate(PTimer **timer);
49 * @param timer PTimer handle.
51 PORTABLE_API ESR_ReturnCode PTimerDestroy(PTimer *timer);
58 PORTABLE_API ESR_ReturnCode PTimerStart(PTimer *timer);
63 PORTABLE_API ESR_ReturnCode PTimerStop(PTimer *timer);
71 PORTABLE_API ESR_ReturnCode PTimerGetElapsed(PTimer *timer
    [all...]
  /external/srec/portable/src/
ptimer.c 2 * ptimer.c *
23 #include "ptimer.h"
46 ESR_ReturnCode PTimerCreate(PTimer **timer)
48 PTimer *tmp = NULL;
52 tmp = NEW(PTimer, "PTimer");
69 ESR_ReturnCode PTimerDestroy(PTimer *timer)
81 ESR_ReturnCode PTimerStart(PTimer *timer)
92 ESR_ReturnCode PTimerStop(PTimer *timer)
111 ESR_ReturnCode PTimerGetElapsed(PTimer *timer, asr_uint32_t* elapsed
    [all...]
pcputimer.c 237 /* #error "Ptimer not implemented for this platform." */
  /external/qemu/
qemu-timer.h 35 /* ptimer.c */
  /external/srec/portable/
Android.mk 28 # src/ptimer.c \
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/
RateAdaptation.c 86 void *pTimer;
100 pTimer = os_timerCreate(hOs, rateAdaptation_rxTimeOut, pRateAdaptation);
102 if (!pTimer)
113 pRateAdaptation->pTimer = pTimer;
232 os_timerStop(pRateAdaptation->hOs, pRateAdaptation->pTimer);
233 utils_nullTimerDestroy(pRateAdaptation->hOs, pRateAdaptation->pTimer);
254 os_timerStop(pRateAdaptation->hOs, pRateAdaptation->pTimer);
255 os_timerStart(pRateAdaptation->hOs, pRateAdaptation->pTimer,pRateAdaptation->rateAdapt_timeout,FALSE);
781 os_timerStart(pRateAdaptation->hOs, pRateAdaptation->pTimer,pRateAdaptation->rateAdapt_timeout,FALSE)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/conn/
connIbss.c 245 os_timerStart(((conn_t *)pData)->hOs, ((conn_t *)pData)->pTimer, (((conn_t *)pData)->timeout + randomTime), FALSE);
310 os_timerStop(((conn_t *)pData)->hOs, ((conn_t *)pData)->pTimer);
359 os_timerStop(((conn_t *)pData)->hOs, ((conn_t *)pData)->pTimer);
connInfra.c 498 os_timerStart(pConn->hOs, pConn->pTimer, DISCONNECT_TIMEOUT, FALSE);
535 os_timerStart(pConn->hOs, pConn->pTimer, DISCONNECT_TIMEOUT, FALSE);
579 os_timerStart(pConn->hOs, pConn->pTimer, DISCONNECT_TIMEOUT, FALSE);
844 os_timerStop(((conn_t *)pData)->hOs, ((conn_t *)pData)->pTimer);
    [all...]
conn.c 116 pConn->pTimer = os_timerCreate(hOs, conn_timeout, pConn);
117 if (pConn->pTimer == NULL)
672 utils_nullTimerDestroy(pConn->hOs, pConn->pTimer);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/inc/
conn.h 80 void *pTimer; /* This timer is used both by IBSS and BSS */
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/
RateAdaptation.h 95 TI_HANDLE pTimer;
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/srp/src/
srp.cpp     [all...]
  /external/opencore/nodes/streaming/jitterbuffernode/include/
pvmf_jitter_buffer_node.h 414 void RtcpTimerEvent(PvmfRtcpTimer* pTimer);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
riva_mmio.h 366 volatile U032 *PTIMER;
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Tx/
tx.c 283 void* pTimer;
322 pTimer = os_timerCreate(hOs, txData_startTxSchedulerFromTimer, hTxData);
323 if(!pTimer)
335 utils_nullTimerDestroy (hOs, pTimer);
345 utils_nullTimerDestroy(hOs, pTimer);
355 utils_nullTimerDestroy (hOs, pTimer);
366 utils_nullTimerDestroy (hOs, pTimer);
379 utils_nullTimerDestroy(hOs, pTimer);
394 utils_nullTimerDestroy(hOs, pTimer);
412 utils_nullTimerDestroy(hOs, pTimer);
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 46 #include "ptimer.h"
762 static PTimer *addWordTimer = NULL;
763 static PTimer *compileTimer = NULL;
    [all...]
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 43 #include "ptimer.h"
755 static PTimer *addWordTimer = NULL;
756 static PTimer *compileTimer = NULL;
    [all...]
  /external/srec/doc/
srec.doxygen 537 */portable/include/ptimer.h \
    [all...]

Completed in 279 milliseconds