OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PTimer
(Results
1 - 4
of
4
) 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
...]
/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
...]
Completed in 505 milliseconds