Home
last modified time | relevance | path

Searched refs:body (Results 1 – 7 of 7) sorted by relevance

/dalvik/vm/hprof/
DHprofOutput.c66 ctx->curRec.body = malloc(ctx->curRec.allocLen); in hprofContextInit()
122 nb = fwrite(rec->body, 1, rec->length, fp); in hprofFlushRecord()
175 newBody = realloc(rec->body, newAllocLen); in guaranteeRecordAppend()
177 rec->body = newBody; in guaranteeRecordAppend()
199 memcpy(rec->body + rec->length, values, numValues); in hprofAddU1ListToRecord()
215 rec->body[rec->length++] = value; in hprofAddU1ToRecord()
243 insert = rec->body + rec->length; in hprofAddU2ListToRecord()
273 insert = rec->body + rec->length; in hprofAddU4ListToRecord()
303 insert = rec->body + rec->length; in hprofAddU8ListToRecord()
DHprof.c125 free(ctx->curRec.body); in hprofShutdown()
126 ctx->curRec.body = NULL; in hprofShutdown()
180 free(ctx->curRec.body); in hprofShutdown()
DHprof.h109 unsigned char *body; member
/dalvik/libcore/dom/src/test/resources/
Dhc_nodtdstaff.svg1 … xmlns='http://www.w3.org/1999/xhtml'><title>hc_nodtdstaff</title></head><body xmlns='http://www.w…
10 </body></svg>
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/
DPKCS7SignedData.java558 ASN1EncodableVector body = new ASN1EncodableVector(); in getEncoded() local
559 body.add(new DERInteger(version)); in getEncoded()
560 body.add(algos); in getEncoded()
561 body.add(contentinfo); in getEncoded()
562 body.add(new DERTaggedObject(false, 0, dercertificates)); in getEncoded()
573 body.add(new DERTaggedObject(false, 1, dercrls)); in getEncoded()
578 body.add(new DERSet(new DERSequence(signerinfo))); in getEncoded()
585 whole.add(new DERTaggedObject(0, new DERSequence(body))); in getEncoded()
/dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
DExpatParserTest.java705 String body = "<bar></bar>"; in testExternalEntityDownload() local
707 + "Content-Length: " + body.length() + "\n" in testExternalEntityDownload()
709 + body; in testExternalEntityDownload()
/dalvik/libcore/luni/src/main/native/
Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp2688 jbyte *body = env->GetByteArrayElements(data, &isCopy); in osNetworkSystem_receiveStreamImpl() local
2698 result = recv(handle, body + offset, localCount, SOCKET_NOFLAGS); in osNetworkSystem_receiveStreamImpl()
2701 env->ReleaseByteArrayElements(data, body, 0); in osNetworkSystem_receiveStreamImpl()