Home
last modified time | relevance | path

Searched refs:pvalue (Results 1 – 12 of 12) sorted by relevance

/external/srec/srec/Nametag/src/
DNametag.c36 ESR_ReturnCode SR_NametagGetValue(const SR_Nametag* self, const char** pvalue, size_t* plen) in SR_NametagGetValue() argument
38 if (self == NULL || pvalue == NULL || plen == NULL) in SR_NametagGetValue()
43 return self->getValue(self, pvalue, plen); in SR_NametagGetValue()
DNametagImpl.c202 ESR_ReturnCode SR_Nametag_GetValue(const SR_Nametag* self, const char** pvalue, size_t* plen) in SR_Nametag_GetValue() argument
206 *pvalue = (const char*)impl->value; in SR_Nametag_GetValue()
/external/qemu/android/
Dhw-events.c136 int *pvalue ) in android_event_from_str() argument
146 *pvalue = 0; in android_event_from_str()
185 *pvalue = (int)strtol( p, &end, 0 ); in android_event_from_str()
Dhw-events.h525 int *pvalue );
/external/srec/srec/Semproc/src/
DSymbolTable.c126 LCHAR *pvalue; in ST_Copy() local
135 HashMapGet(self->hashmap, pkey, (void **)&pvalue); in ST_Copy()
137 copyValue = (LCHAR*) CALLOC(LSTRLEN(pvalue) + 1, sizeof(LCHAR), _MTAG); in ST_Copy()
143 LSTRCPY(copyValue, pvalue); in ST_Copy()
/external/bluetooth/glib/tests/
Dhash-test.c389 gint *pvalue; in main() local
398 pvalue = g_hash_table_find (hash_table, find_first, &value); in main()
399 if (!pvalue || *pvalue != value) in main()
Dtestglib.c1033 gint *pvalue = NULL; in hash_table_tests() local
1043 pvalue = g_hash_table_find (hash_table, find_first_that, &value); in hash_table_tests()
1044 if (*pvalue != value) in hash_table_tests()
/external/icu4c/tools/dumpce/
Ddumpce.cpp681 const char *pvalue; in parseAttributes() local
684 pvalue = strchr(pname, '='); in parseAttributes()
685 if (pvalue == NULL) { in parseAttributes()
691 int count = pvalue - pname; in parseAttributes()
701 pvalue ++; in parseAttributes()
703 pname = strchr(pvalue, ','); in parseAttributes()
707 count = pname - pvalue; in parseAttributes()
708 strncpy(str, pvalue, count); in parseAttributes()
/external/srec/srec/Nametag/include/
DSR_NametagDefs.h64 ESR_ReturnCode (*getValue)(const struct SR_Nametag_t* self, const char** pvalue, size_t* plen);
DSR_NametagImpl.h57 SREC_NAMETAG_API ESR_ReturnCode SR_Nametag_GetValue(const SR_Nametag* self, const char** pvalue, si…
DSR_Nametag.h70 SREC_NAMETAG_API ESR_ReturnCode SR_NametagGetValue(const SR_Nametag* self, const char** pvalue, siz…
/external/qemu/android/skin/
Dfile.c443 skin_layout_event_decode( const char* event, int *ptype, int *pcode, int *pvalue ) in skin_layout_event_decode() argument
478 *pvalue = strtol(y+1, NULL, 0); in skin_layout_event_decode()