diff options
Diffstat (limited to 'libs/binder/Parcel.cpp')
| -rw-r--r-- | libs/binder/Parcel.cpp | 52 | 
1 files changed, 26 insertions, 26 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 1f1379d07303..26571ce970f9 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -330,7 +330,7 @@ status_t Parcel::setDataSize(size_t size)      err = continueWrite(size);      if (err == NO_ERROR) {          mDataSize = size; -        LOGV("setDataSize Setting data size of %p to %d\n", this, mDataSize); +        ALOGV("setDataSize Setting data size of %p to %d\n", this, mDataSize);      }      return err;  } @@ -534,10 +534,10 @@ status_t Parcel::finishWrite(size_t len)  {      //printf("Finish write of %d\n", len);      mDataPos += len; -    LOGV("finishWrite Setting data pos of %p to %d\n", this, mDataPos); +    ALOGV("finishWrite Setting data pos of %p to %d\n", this, mDataPos);      if (mDataPos > mDataSize) {          mDataSize = mDataPos; -        LOGV("finishWrite Setting data size of %p to %d\n", this, mDataSize); +        ALOGV("finishWrite Setting data size of %p to %d\n", this, mDataSize);      }      //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);      return NO_ERROR; @@ -730,7 +730,7 @@ status_t Parcel::writeBlob(size_t len, WritableBlob* outBlob)      status_t status;      if (!mAllowFds || len <= IN_PLACE_BLOB_LIMIT) { -        LOGV("writeBlob: write in place"); +        ALOGV("writeBlob: write in place");          status = writeInt32(0);          if (status) return status; @@ -741,7 +741,7 @@ status_t Parcel::writeBlob(size_t len, WritableBlob* outBlob)          return NO_ERROR;      } -    LOGV("writeBlob: write to ashmem"); +    ALOGV("writeBlob: write to ashmem");      int fd = ashmem_create_region("Parcel Blob", len);      if (fd < 0) return NO_MEMORY; @@ -865,7 +865,7 @@ status_t Parcel::read(void* outData, size_t len) const      if ((mDataPos+PAD_SIZE(len)) >= mDataPos && (mDataPos+PAD_SIZE(len)) <= mDataSize) {          memcpy(outData, mData+mDataPos, len);          mDataPos += PAD_SIZE(len); -        LOGV("read Setting data pos of %p to %d\n", this, mDataPos); +        ALOGV("read Setting data pos of %p to %d\n", this, mDataPos);          return NO_ERROR;      }      return NOT_ENOUGH_DATA; @@ -876,7 +876,7 @@ const void* Parcel::readInplace(size_t len) const      if ((mDataPos+PAD_SIZE(len)) >= mDataPos && (mDataPos+PAD_SIZE(len)) <= mDataSize) {          const void* data = mData+mDataPos;          mDataPos += PAD_SIZE(len); -        LOGV("readInplace Setting data pos of %p to %d\n", this, mDataPos); +        ALOGV("readInplace Setting data pos of %p to %d\n", this, mDataPos);          return data;      }      return NULL; @@ -987,7 +987,7 @@ const char* Parcel::readCString() const          if (eos) {              const size_t len = eos - str;              mDataPos += PAD_SIZE(len+1); -            LOGV("readCString Setting data pos of %p to %d\n", this, mDataPos); +            ALOGV("readCString Setting data pos of %p to %d\n", this, mDataPos);              return str;          }      } @@ -1102,7 +1102,7 @@ status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const      if (status) return status;      if (!useAshmem) { -        LOGV("readBlob: read in place"); +        ALOGV("readBlob: read in place");          const void* ptr = readInplace(len);          if (!ptr) return BAD_VALUE; @@ -1110,7 +1110,7 @@ status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const          return NO_ERROR;      } -    LOGV("readBlob: read from ashmem"); +    ALOGV("readBlob: read from ashmem");      int fd = readFileDescriptor();      if (fd == int(BAD_TYPE)) return BAD_VALUE; @@ -1164,7 +1164,7 @@ const flat_binder_object* Parcel::readObject(bool nullMetaData) const              // When transferring a NULL object, we don't write it into              // the object list, so we don't want to check for it when              // reading. -            LOGV("readObject Setting data pos of %p to %d\n", this, mDataPos); +            ALOGV("readObject Setting data pos of %p to %d\n", this, mDataPos);              return obj;          } @@ -1174,7 +1174,7 @@ const flat_binder_object* Parcel::readObject(bool nullMetaData) const          size_t opos = mNextObjectHint;          if (N > 0) { -            LOGV("Parcel %p looking for obj at %d, hint=%d\n", +            ALOGV("Parcel %p looking for obj at %d, hint=%d\n",                   this, DPOS, opos);              // Start at the current hint position, looking for an object at @@ -1188,10 +1188,10 @@ const flat_binder_object* Parcel::readObject(bool nullMetaData) const              }              if (OBJS[opos] == DPOS) {                  // Found it! -                LOGV("Parcel found obj %d at index %d with forward search", +                ALOGV("Parcel found obj %d at index %d with forward search",                       this, DPOS, opos);                  mNextObjectHint = opos+1; -                LOGV("readObject Setting data pos of %p to %d\n", this, mDataPos); +                ALOGV("readObject Setting data pos of %p to %d\n", this, mDataPos);                  return obj;              } @@ -1201,10 +1201,10 @@ const flat_binder_object* Parcel::readObject(bool nullMetaData) const              }              if (OBJS[opos] == DPOS) {                  // Found it! -                LOGV("Parcel found obj %d at index %d with backward search", +                ALOGV("Parcel found obj %d at index %d with backward search",                       this, DPOS, opos);                  mNextObjectHint = opos+1; -                LOGV("readObject Setting data pos of %p to %d\n", this, mDataPos); +                ALOGV("readObject Setting data pos of %p to %d\n", this, mDataPos);                  return obj;              }          } @@ -1260,7 +1260,7 @@ void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,      mDataSize = mDataCapacity = dataSize;      //LOGI("setDataReference Setting data size of %p to %lu (pid=%d)\n", this, mDataSize, getpid());      mDataPos = 0; -    LOGV("setDataReference Setting data pos of %p to %d\n", this, mDataPos); +    ALOGV("setDataReference Setting data pos of %p to %d\n", this, mDataPos);      mObjects = const_cast<size_t*>(objects);      mObjectsSize = mObjectsCapacity = objectsCount;      mNextObjectHint = 0; @@ -1370,8 +1370,8 @@ status_t Parcel::restartWrite(size_t desired)      }      mDataSize = mDataPos = 0; -    LOGV("restartWrite Setting data size of %p to %d\n", this, mDataSize); -    LOGV("restartWrite Setting data pos of %p to %d\n", this, mDataPos); +    ALOGV("restartWrite Setting data size of %p to %d\n", this, mDataSize); +    ALOGV("restartWrite Setting data pos of %p to %d\n", this, mDataPos);      free(mObjects);      mObjects = NULL; @@ -1445,7 +1445,7 @@ status_t Parcel::continueWrite(size_t desired)          mData = data;          mObjects = objects;          mDataSize = (mDataSize < desired) ? mDataSize : desired; -        LOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize); +        ALOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize);          mDataCapacity = desired;          mObjectsSize = mObjectsCapacity = objectsSize;          mNextObjectHint = 0; @@ -1485,11 +1485,11 @@ status_t Parcel::continueWrite(size_t desired)          } else {              if (mDataSize > desired) {                  mDataSize = desired; -                LOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize); +                ALOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize);              }              if (mDataPos > desired) {                  mDataPos = desired; -                LOGV("continueWrite Setting data pos of %p to %d\n", this, mDataPos); +                ALOGV("continueWrite Setting data pos of %p to %d\n", this, mDataPos);              }          } @@ -1508,8 +1508,8 @@ status_t Parcel::continueWrite(size_t desired)          mData = data;          mDataSize = mDataPos = 0; -        LOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize); -        LOGV("continueWrite Setting data pos of %p to %d\n", this, mDataPos); +        ALOGV("continueWrite Setting data size of %p to %d\n", this, mDataSize); +        ALOGV("continueWrite Setting data pos of %p to %d\n", this, mDataPos);          mDataCapacity = desired;      } @@ -1523,8 +1523,8 @@ void Parcel::initState()      mDataSize = 0;      mDataCapacity = 0;      mDataPos = 0; -    LOGV("initState Setting data size of %p to %d\n", this, mDataSize); -    LOGV("initState Setting data pos of %p to %d\n", this, mDataPos); +    ALOGV("initState Setting data size of %p to %d\n", this, mDataSize); +    ALOGV("initState Setting data pos of %p to %d\n", this, mDataPos);      mObjects = NULL;      mObjectsSize = 0;      mObjectsCapacity = 0;  |