HomeSort by relevance Sort by last modified time
    Searched refs:newData (Results 1 - 25 of 41) sorted by null

1 2

  /cts/tools/host/src/com/android/cts/
MultiplexingLogListener.java 50 public void newData(byte[] data, int offset, int length) {
52 listener.newData(data, offset, length);
  /external/chromium/third_party/icu/source/test/perf/usetperf/
bitset.cpp 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
  /external/icu4c/test/perf/usetperf/
bitset.cpp 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 95 char[] newData = new char[min > newCount ? min : newCount];
96 System.arraycopy(value, 0, newData, 0, count);
97 value = newData;
233 char[] newData = new char[value.length];
234 System.arraycopy(value, 0, newData, 0, start);
235 System.arraycopy(value, end, newData, start, length);
236 value = newData;
256 char[] newData = new char[value.length];
257 System.arraycopy(value, 0, newData, 0, location);
259 .arraycopy(value, location + 1, newData, location
    [all...]
  /external/webkit/WebKit/chromium/src/
WebCString.cpp 59 char* newData;
61 WebCore::CString::newUninitialized(length, newData).buffer();
62 memcpy(newData, data, length);
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.h 33 QtPixmapInstance(PassRefPtr<RootObject> rootObj, const QVariant& newData);
  /external/webkit/JavaScriptCore/runtime/
MarkStack.h 118 void* newData = allocateStack(m_allocated);
119 memcpy(newData, m_data, oldAllocation);
121 m_data = reinterpret_cast<T*>(newData);
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 148 byte[] newData = new byte[pos+avail];
149 System.arraycopy(data, 0, newData, 0, pos);
150 data = newData;
  /external/srec/portable/src/
pmemory.c 740 MemoryData* newData;
793 newData = (MemoryData *) PortNew(actualSize);
794 if (newData == NULL)
802 memcpy(newData, oldData, actualSize);
806 memcpy(newData, oldData, oldSize);
810 newData = (MemoryData *) realloc(oldData, actualSize);
816 newData = oldData;
820 if (newData != NULL && bMalloc)
834 newData->stackTrace = oldStackTrace;
835 newData->next = oldNext
    [all...]
  /libcore/luni/src/main/java/java/util/
Vector.java 447 E[] newData = newElementArray(newCapacity);
450 System.arraycopy(elementData, 0, newData, 0, elementCount);
451 elementData = newData;
467 E[] newData = newElementArray(elementData.length + adding);
468 System.arraycopy(elementData, 0, newData, 0, elementCount);
469 elementData = newData;
487 E[] newData = newElementArray(elementData.length + adding);
488 System.arraycopy(elementData, 0, newData, 0, elementCount);
489 elementData = newData;
    [all...]
IdentityHashMap.java 502 Object[] newData = newElementArray(newlength);
507 int index = findIndex(key, newData);
508 newData[index] = key;
509 newData[index + 1] = elementData[i + 1];
512 elementData = newData;
WeakHashMap.java 645 Entry<K, V>[] newData = newEntryArray(length);
652 entry.next = newData[index];
653 newData[index] = entry;
657 elementData = newData;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
LogReceiver.java 59 * <li>{@link #newData(byte[], int, int)} provides a way to receive the raw information
76 public void newData(byte[] data, int offset, int length);
115 mListener.newData(data, offset, length);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AttributesImpl.java 596 String newData[] = new String[max];
598 System.arraycopy(data, 0, newData, 0, length*5);
600 data = newData;
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 588 String newData[] = new String[max];
590 System.arraycopy(data, 0, newData, 0, length*5);
592 data = newData;
  /packages/apps/Settings/src/com/android/settings/vpn/
VpnEditor.java 198 byte[] newData = newParcel.marshall();
199 if (mOriginalProfileData.length == newData.length) {
201 if (mOriginalProfileData[i] != newData[i]) return true;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HeapSegment.java 319 ByteBuffer newData = ByteBuffer.allocate(newSize * 2);
322 newData.put(mUsageData);
323 mUsageData = newData;
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 545 byte[] newData = new byte[desiredSize * 2 + 1000];
546 System.arraycopy(data, 0, newData, 0, cursor);
547 data = newData;
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 48 public void newData(byte[] data, int offset, int length) {
  /external/chromium/third_party/icu/source/i18n/
colldata.cpp 520 CollData *result = NULL, *newData = NULL;
529 newData = new CollData(collator, key, keyLength, status);
530 newEntry = new CollDataCacheEntry(newData);
532 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
541 uhash_put(cache, newData->key, newEntry, &status);
546 delete newData;
551 return newData;
565 delete newData;
ucol_cnt.cpp 31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
32 if(newData == NULL) {
38 uprv_free(newData);
42 tbl->CEs = newData;
  /external/icu4c/i18n/
colldata.cpp 518 CollData *result = NULL, *newData = NULL;
527 newData = new CollData(collator, key, keyLength, status);
528 newEntry = new CollDataCacheEntry(newData);
530 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
539 uhash_put(cache, newData->key, newEntry, &status);
544 delete newData;
549 return newData;
563 delete newData;
ucol_cnt.cpp 31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
32 if(newData == NULL) {
38 uprv_free(newData);
42 tbl->CEs = newData;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java     [all...]
  /frameworks/base/tools/aapt/
Images.cpp 565 void * newData = malloc(patchSize);
566 memcpy(newData, data, patchSize);
567 Res_png_9patch* outPatch = inPatch->deserialize(newData);
568 // deserialization is done in place, so outPatch == newData
569 assert(outPatch == newData);
585 free(newData);
    [all...]

Completed in 585 milliseconds

1 2