Lines Matching refs:response
59 StringBuilder response = new StringBuilder("DECAFBAD"); in main() local
64 response.append(',').append(memoryInfo.nativeSharedDirty); in main()
65 response.append(',').append(memoryInfo.dalvikSharedDirty); in main()
66 response.append(',').append(memoryInfo.otherSharedDirty); in main()
67 response.append(',').append(memoryInfo.nativePrivateDirty); in main()
68 response.append(',').append(memoryInfo.dalvikPrivateDirty); in main()
69 response.append(',').append(memoryInfo.otherPrivateDirty); in main()
71 response.append(',').append(allocCount); in main()
72 response.append(',').append(allocSize); in main()
73 response.append(',').append(freedCount); in main()
74 response.append(',').append(freedSize); in main()
75 response.append(',').append(nativeHeapSize); in main()
77 System.out.println(response.toString()); in main()