OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lstring
(Results
1 - 10
of
10
) sorted by null
/external/srec/shared/include/
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
...]
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);
/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)
ESR_Session.c
28
#include "
lstring
.h"
SessionTypeImpl.c
26
#include "
lstring
.h"
853
LString
* valueBuffer = NULL;
[
all
...]
/external/srec/shared/
Android.mk
19
src/
lstring
.c \
/external/bluetooth/glib/glib/
gmessages.c
1004
gchar *
lstring
= strdup_convert (string, charset);
local
1006
fputs (
lstring
, stdout);
1007
g_free (
lstring
);
1055
gchar *
lstring
= strdup_convert (string, charset);
local
1057
fputs (
lstring
, stderr);
1058
g_free (
lstring
);
/external/srec/portable/include/
phashtable.h
42
* the key is a 0-terminated
LSTRING
.
48
* assumes the key are 0-terminated
LSTRING
and uses LSTRCMP.
/external/srec/doc/
srec.doxygen
553
*/Shared/include/
lstring
.h \
[
all
...]
Completed in 1066 milliseconds