Home
last modified time | relevance | path

Searched refs:pvalue (Results 1 – 19 of 19) 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()
189 *pvalue = (int)strtol( p, &end, 0 ); in android_event_from_str()
Dhw-events.h536 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/clang/test/Sema/
Dexpr-address-of.c12 struct entry pvalue; in test() local
14 add_one(&pvalue.bitf); // expected-error {{address of bit-field requested}} in test()
/external/openssl/crypto/x509v3/
Dv3_genn.c242 ASN1_OBJECT **poid, ASN1_TYPE **pvalue) in GENERAL_NAME_get0_otherName() argument
248 if (pvalue) in GENERAL_NAME_get0_otherName()
249 *pvalue = gen->d.otherName->value; in GENERAL_NAME_get0_otherName()
Dx509v3.h554 ASN1_OBJECT **poid, ASN1_TYPE **pvalue);
/external/stlport/src/
Dsparc_atomic64.s5 ! int _STLP_atomic_exchange (void *pvalue, int value)
26 ! int _STLP_atomic_increment (void *pvalue)
/external/nist-sip/java/gov/nist/javax/sip/parser/
DURLParser.java156 String pvalue = ""; in uriParam() local
162 pvalue = paramNameOrValue(); in uriParam()
166 ( pvalue == null || in uriParam()
167 pvalue.length() == 0)) in uriParam()
169 else return new NameValue(pname, pvalue, isFlagParam); in uriParam()
/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/chromium/third_party/libjingle/source/talk/p2p/client/
Dbasicportallocator.cc440 ProtocolType pvalue; in OnAddressReady() local
441 if (!StringToProto(potentials[i].protocol().c_str(), &pvalue)) in OnAddressReady()
443 if (it->sequence->ProtocolEnabled(pvalue)) { in OnAddressReady()
462 ProtocolType pvalue; in OnProtocolEnabled() local
463 if (!StringToProto(potentials[i].protocol().c_str(), &pvalue)) in OnProtocolEnabled()
465 if (pvalue == proto) { in OnProtocolEnabled()
/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/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DDumpRenderTreeSupport_wrapPregenerated.c885 void *pvalue; member
1150 sv_setpv(sv, (char *) swig_constants[i].pvalue);
1153 SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0);
1156 …SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].pty…
/external/qemu/android/skin/
Dfile.c460 skin_layout_event_decode( const char* event, int *ptype, int *pcode, int *pvalue ) in skin_layout_event_decode() argument
495 *pvalue = strtol(y+1, NULL, 0); in skin_layout_event_decode()
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Dscm.py595 def propset(self, pname, pvalue, path): argument
597 return self.run(['svn', 'pset', pname, pvalue, base], cwd=dir)
/external/openssl/include/openssl/
Dx509v3.h554 ASN1_OBJECT **poid, ASN1_TYPE **pvalue);