OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LString
(Results
1 - 5
of
5
) sorted by null
/external/srec/shared/include/
LStringImpl.h
30
*
LString
implementation.
37
LString
Interface;
53
ESR_SHARED_API ESR_ReturnCode LString_Append(
LString
* self, const LCHAR* value);
57
ESR_SHARED_API ESR_ReturnCode LString_Reset(
LString
* self);
61
ESR_SHARED_API ESR_ReturnCode LString_ToLCHAR(
LString
* self, LCHAR** result);
65
ESR_SHARED_API ESR_ReturnCode LString_Destroy(
LString
* self);
lstring.h
2
*
lstring
.h *
30
* @addtogroup LStringModule
LString
API functions
36
*
LString
interface.
38
* @see list of functions used to operate on @ref LStringModule "
LString
" objects
43
* Appends text to
LString
.
45
* @param self
LString
handle
52
* @param self
LString
handle
56
* Destroys
LString
in favour of static LCHAR* string.
57
* The
LString
object should not be used past this point.
59
* @param self
LString
handl
[
all
...]
/external/srec/shared/src/
lstring.c
2
*
lstring
.c *
20
#include "
lstring
.h"
25
ESR_ReturnCode LStringAppend(
LString
* self, const LCHAR* value)
35
ESR_ReturnCode LStringToLCHAR(
LString
* self, LCHAR** result)
45
ESR_ReturnCode LStringReset(
LString
* self)
55
ESR_ReturnCode LStringDestroy(
LString
* self)
LStringImpl.c
20
#include "
lstring
.h"
28
ESR_ReturnCode LStringCreate(
LString
** self)
49
*self = (
LString
*) impl;
53
ESR_ReturnCode LString_Append(
LString
* self, const LCHAR* value)
72
ESR_ReturnCode LString_Reset(
LString
* self)
80
ESR_ReturnCode LString_ToLCHAR(
LString
* self, LCHAR** result)
91
ESR_ReturnCode LString_Destroy(
LString
* self)
SessionTypeImpl.c
26
#include "
lstring
.h"
853
LString
* valueBuffer = NULL;
[
all
...]
Completed in 979 milliseconds