/development/testrunner/ |
logger.py | 41 def Log(new_str): 42 """Appends new_str to the end of _LOG_FILE and prints it to stdout. 45 # new_str is a string. 46 new_str: 'some message to log' 48 msg = _PrependTimeStamp(new_str) 69 def SilentLog(new_str): 70 """Silently log new_str. Unless verbose mode is enabled, will log new_str 73 # new_str is a string. 74 new_str: 'some message to log [all...] |
/system/core/libcutils/ |
str_parms.c | 290 char *new_str; local 293 ret = asprintf(&new_str, "%s%s%s=%s", 302 *old_str = new_str;
|
/cts/tools/dasm/src/java_cup/ |
action_part.java | 45 public void set_code_string(String new_str) {_code_string = new_str;}
|
/external/elfutils/libelf/ |
elf_getarsym.c | 214 char *new_str = (char *) (elf->state.ar.ar_sym + n + 1); local 223 || ((size_t) pread_retry (elf->fildes, new_str, 237 str_data = (char *) new_str;
|
/external/dbus/dbus/ |
dbus-string.c | 279 unsigned char *new_str; local 290 new_str = dbus_realloc (real->str - real->align_offset, new_allocated); 291 if (_DBUS_UNLIKELY (new_str == NULL)) 294 real->str = new_str + real->align_offset; 334 unsigned char *new_str; local 365 new_str = dbus_realloc (real->str - real->align_offset, new_allocated); 366 if (_DBUS_UNLIKELY (new_str == NULL)) 369 real->str = new_str + real->align_offset; [all...] |
/external/bison/lib/ |
getopt.c | 175 char *new_str = malloc (top + 1); 176 if (new_str == NULL) 180 memset (__mempcpy (new_str, __getopt_nonoption_flags, 184 __getopt_nonoption_flags = new_str; 172 char *new_str = malloc (top + 1); local
|
/external/grub/lib/ |
getopt.c | 332 char *new_str = malloc (top + 1); 333 if (new_str == NULL) 337 memset (__mempcpy (new_str, __getopt_nonoption_flags, 341 __getopt_nonoption_flags = new_str; 329 char *new_str = malloc (top + 1); local
|
/external/v8/src/ |
liveedit-debugger.js | [all...] |
/ndk/sources/host-tools/make-3.81/ |
getopt.c | 322 char *new_str = malloc (top + 1); 323 if (new_str == NULL) 327 memset (__mempcpy (new_str, __getopt_nonoption_flags, 331 __getopt_nonoption_flags = new_str; 320 char *new_str = malloc (top + 1); local
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
getopt.c | 170 char *new_str = malloc (top + 1); 171 if (new_str == NULL) 175 memset (__mempcpy (new_str, __getopt_nonoption_flags, 179 __getopt_nonoption_flags = new_str; 167 char *new_str = malloc (top + 1); local
|
/external/bluetooth/bluez/src/ |
storage.c | 698 char *new_str = service_list_to_string(services); local 699 ret = textfile_caseput(filename, addr, new_str); 700 free(new_str);
|
/external/bluetooth/glib/glib/ |
gstrfuncs.c | 96 gchar *new_str; local 102 new_str = g_new (char, length); 103 memcpy (new_str, str, length); 106 new_str = NULL; 108 return new_str; 151 gchar *new_str; local 155 new_str = g_new (gchar, n + 1); 156 strncpy (new_str, str, n); 157 new_str[n] = '\0'; 160 new_str = NULL [all...] |
/external/compiler-rt/lib/asan/tests/ |
asan_test.cc | 979 char *new_str; local 982 new_str = strdup(str); 983 free(new_str); 984 new_str = strdup(str + size - 1); 985 free(new_str); [all...] |
/frameworks/base/services/java/com/android/server/ |
MountService.java | 726 * from <old_#> (<old_str>) to <new_#> (<new_str>)" [all...] |