HomeSort by relevance Sort by last modified time
    Searched full:id_size (Results 1 - 8 of 8) sorted by null

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 32 public static final int ID_SIZE = 4;
64 STRING_IN_UTF8(0x01, -ID_SIZE),
65 LOAD_CLASS(0x02, 4 + ID_SIZE + 4 + ID_SIZE),
67 STACK_FRAME(0x04, ID_SIZE + ID_SIZE + ID_SIZE + ID_SIZE + 4 + 4),
71 START_THREAD(0x0a, 4 + ID_SIZE + 4 + ID_SIZE + ID_SIZE + ID_SIZE)
    [all...]
BinaryHprofWriter.java 82 out.writeInt(BinaryHprof.ID_SIZE);
170 BinaryHprof.ID_SIZE + bytes.length);
200 4 + 4 + 4 + (frames * BinaryHprof.ID_SIZE));
BinaryHprofReader.java 141 if (idSize != BinaryHprof.ID_SIZE) {
250 byte[] bytes = new byte[recordLength - BinaryHprof.ID_SIZE];
383 int expectedLength = 4 + 4 + 4 + (frames * BinaryHprof.ID_SIZE);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
macdeviceinfo.cc 34 const int id_size = 4; local
35 if (device.id.size() < 2 * id_size) {
40 const size_t vid_location = device.id.size() - 2 * id_size;
41 std::string id_vendor = device.id.substr(vid_location, id_size);
42 const size_t pid_location = device.id.size() - id_size;
43 std::string id_product = device.id.substr(pid_location, id_size);
win32deviceinfo.cc 34 const int id_size = 4; local
38 vid_location + sizeof(vid) - 1 + id_size > device.id.size()) {
44 pid_location + sizeof(pid) - 1 + id_size > device.id.size()) {
48 id_size);
50 id_size);
  /external/chromium_org/media/video/capture/win/
video_capture_device_mf_win.cc 271 UINT32 name_size, id_size; local
277 &id_size))) {
278 std::wstring name_w(name, name_size), id_w(id, id_size);
  /external/chromium_org/media/filters/
ffmpeg_demuxer.cc 122 int id_size = 0; local
126 &id_size);
135 MakeSideData(id_data, id_data + id_size,
  /external/chromium_org/google_apis/gcm/engine/
mcs_client.cc 57 for (int i = 0; i < selective_ack.id_size(); ++i) {

Completed in 147 milliseconds