HomeSort by relevance Sort by last modified time
    Searched defs:newstr (Results 1 - 17 of 17) sorted by null

  /external/curl/src/
tool_strdup.c 28 char *newstr; local
38 newstr = malloc((len+1)*sizeof(char));
39 if(!newstr)
42 memcpy(newstr, str, (len+1)*sizeof(char));
44 return newstr;
tool_urlglob.c 654 char *newstr; local
658 newstr = realloc(target, allocsize + 1);
659 if(!newstr) {
663 target = newstr;
  /external/curl/lib/
strdup.c 33 char *newstr; local
43 newstr = malloc((len+1)*sizeof(char));
44 if(!newstr)
47 memcpy(newstr, str, (len+1)*sizeof(char));
49 return newstr;
base64.c 110 unsigned char *newstr; local
142 newstr = malloc(rawlen + 1);
143 if(!newstr)
146 pos = newstr;
152 free(newstr);
165 *outptr = newstr;
imap.c 1826 char *newstr = NULL; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringFactory.java 37 public abstract XMLString newstr(String string); method in class:XMLStringFactory
49 public abstract XMLString newstr(FastStringBuffer string, int start, method in class:XMLStringFactory
62 public abstract XMLString newstr(char[] string, int start, method in class:XMLStringFactory
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XMLStringFactoryImpl.java 56 public XMLString newstr(String string) method in class:XMLStringFactoryImpl
71 public XMLString newstr(FastStringBuffer fsb, int start, int length) method in class:XMLStringFactoryImpl
86 public XMLString newstr(char[] string, int start, int length) method in class:XMLStringFactoryImpl
  /toolchain/binutils/binutils-2.25/libiberty/
concat.c 142 char *newstr; local
147 newstr = XNEWVEC (char, vconcat_length (first, args) + 1);
152 vconcat_copy (newstr, first, args);
155 return newstr;
179 char *newstr; local
184 newstr = XNEWVEC (char, vconcat_length (first, args) + 1);
189 vconcat_copy (newstr, first, args);
194 return newstr;
  /external/vboot_reference/futility/
dump_kernel_config_lib.c 136 char *newstr = NULL; local
165 newstr = FindKernelConfigFromStream(ctx, read_fn,
175 return newstr;
  /external/elfutils/libebl/
eblwstrtab.c 153 struct Ebl_WStrent *newstr; local
174 newstr = (struct Ebl_WStrent *) (st->backp + align);
175 newstr->string = str;
176 newstr->len = len;
177 newstr->next = NULL;
178 newstr->left = NULL;
179 newstr->right = NULL;
180 newstr->offset = 0;
182 newstr->reverse[i] = str[len - 2 - i];
183 newstr->reverse[len - 1] = L'\0'
223 struct Ebl_WStrent *newstr; local
    [all...]
eblgstrtab.c 171 struct Ebl_GStrent *newstr = (struct Ebl_GStrent *) (st->backp + align); local
172 newstr->string = str;
173 newstr->len = len;
174 newstr->width = st->width;
175 newstr->next = NULL;
176 newstr->left = NULL;
177 newstr->right = NULL;
178 newstr->offset = 0;
181 newstr->reverse[i * st->width + j] = str[(len - 2 - i) * st->width + j];
183 newstr->reverse[(len - 1) * st->width + j] = '\0'
223 struct Ebl_GStrent *newstr; local
    [all...]
eblstrtab.c 173 struct Ebl_Strent *newstr = (struct Ebl_Strent *) (st->backp + align); local
174 newstr->string = str;
175 newstr->len = len;
176 newstr->next = NULL;
177 newstr->left = NULL;
178 newstr->right = NULL;
179 newstr->offset = 0;
181 newstr->reverse[i] = str[len - 2 - i];
182 newstr->reverse[len - 1] = '\0';
186 return newstr;
230 struct Ebl_Strent *newstr = newstring (st, str, len); local
    [all...]
  /external/icu/icu4c/source/samples/uresb/
uresb.c 189 UChar *newstr, *np; local
200 newstr = (UChar *) malloc((1 + alen) * sizeof(*newstr));
201 for (sp = string, np = newstr; *sp; ++sp) {
218 return newstr;
  /system/core/logd/
LogAudit.cpp 223 char newstr[n]; local
225 *newstr = info ? ANDROID_LOG_INFO : ANDROID_LOG_WARN;
226 strlcpy(newstr + 1, comm, l);
227 strncpy(newstr + 1 + l, str, b);
228 strncpy(newstr + 1 + l + b, ecomm, e);
230 rc = logbuf->log(LOG_ID_MAIN, now, uid, pid, tid, newstr,
LogKlog.cpp 777 char newstr[n]; local
778 char *np = newstr;
820 int rc = logbuf->log(LOG_ID_KERNEL, now, uid, pid, tid, newstr,
  /libcore/ojluni/src/main/java/sun/security/util/
DerInputStream.java 384 DerInputStream newstr; local
417 newstr = this;
419 newstr = subStream(len, true);
428 value = new DerValue(newstr.buffer, originalEncodedFormRetained);
430 } while (newstr.available() > 0);
432 if (newstr.available() != 0)
  /toolchain/binutils/binutils-2.25/bfd/
vms-misc.c 145 char *newstr = bfd_malloc ((bfd_size_type) size + 1);
147 if (newstr == NULL)
149 memcpy (newstr, (char *) str, (size_t) size);
150 newstr[size] = 0;
152 return newstr;
144 char *newstr = bfd_malloc ((bfd_size_type) size + 1); local

Completed in 2481 milliseconds