HomeSort by relevance Sort by last modified time
    Searched refs:tofree (Results 1 - 3 of 3) sorted by null

  /system/core/libcutils/
zygote.c 106 char *tofree = NULL;
112 tofree = strdup(toprint);
113 toprint = tofree;
114 replace_nl(tofree);
128 if (tofree != NULL) {
129 free(tofree);
  /external/openssl/apps/
ca.c 321 char *tofree=NULL; local
568 tofree=NULL;
578 tofree=OPENSSL_malloc(len);
579 strcpy(tofree,s);
582 tofree=OPENSSL_malloc(len);
583 BUF_strlcpy(tofree,s,len);
584 BUF_strlcat(tofree,"/",len);
586 BUF_strlcat(tofree,CONFIG_FILE,len);
587 configfile=tofree;
602 if(tofree)
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 137 char *tofree; /* memory to be free'd, or 0 */ member in struct:__anon6916
350 freep(&dest->tofree);
361 dest->tofree = 0;
366 dest->result = dest->tofree = malloc(strlen(utf) + 1);
371 dest->result = dest->tofree = malloc(utflen + 1);
373 if (!dest->tofree) {
396 dest->tofree = malloc(len + 1);
397 if (!dest->tofree) {
401 dest->result = dest->tofree;
418 dest->tofree = 0
    [all...]

Completed in 125 milliseconds