/frameworks/webview/chromium/tools/ |
D | memreport.py | 110 for process in processes_stats: 115 if not v in process: 120 total_map[v] += process[v]['private'] + process[v]['shared_app'] 123 _ConvertMemoryField(process[v]['private']) + ',' + 124 _ConvertMemoryField(process[v]['private_unevictable']) + ',' + 125 _ConvertMemoryField(process[v]['shared_other']) + ',' + 126 _ConvertMemoryField(process[v]['shared_other_unevictable']) + ','
|
/frameworks/base/docs/html/guide/topics/processes/ |
D | process-lifecycle.jd | 4 <p>In most cases, every Android application runs in its own Linux process. 5 This process is created for the application when some of its code needs to 9 <p>An unusual and fundamental feature of Android is that an application process's 19 of the application's process. <strong>Not using these components correctly can 20 result in the system killing the application's process while it is doing 23 <p>A common example of a process life-cycle bug is a 29 process no longer needed (unless other application components are active in 30 it). So, the system may kill the process at any time to reclaim memory, and in doing so, 31 it terminates the spawned thread running in the process. The solution to this problem 33 system knows that there is still active work being done in the process.</p> [all …]
|
/frameworks/base/docs/html/guide/components/ |
D | processes-and-threads.jd | 29 running, the Android system starts a new Linux process for the application with a single thread of 30 execution. By default, all components of the same application run in the same process and thread 31 (called the "main" thread). If an application component starts and there already exists a process 33 started within that process and uses the same thread of execution. However, you can arrange for 35 threads for any process.</p> 42 <p>By default, all components of the same application run in the same process and most applications 43 should not change this. However, if you find that you need to control which process a certain 51 <provider>}</a>—supports an {@code android:process} attribute that can specify a 52 process in which that component should run. You can set this attribute so that each component runs 53 in its own process or so that some components share a process while others do not. You can also set [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | EventLogTags.logtags | 34 # Application process bound to work 36 # Application process died 42 # Application process has been started 44 # An application process has been marked as bad 46 # An application process that was bad is now marked as good 60 # Kill a process to reclaim memory. 69 # A process has crashed too many times, it is being cleared 71 # An unknown process is trying to attach to the activity manager 75 # A service is going to be restarted after its process went away 77 # A client was waiting for a content provider, but its process was lost [all …]
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | Program.java | 27 public abstract void process(Frame[] inputs, Frame output); in process() method in Program 29 public void process(Frame input, Frame output) { in process() method in Program 32 process(inputs, output); in process()
|
/frameworks/base/tools/preload/ |
D | Operation.java | 36 final Proc process; field in Operation 57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, in Operation() argument 59 this.process = process; in Operation()
|
D | Root.java | 55 Proc process = processes.get(record.pid); in indexClassOperation() local 84 o = process.endOperation(record.tid, record.className, in indexClassOperation() 93 process.startOperation(record.tid, loadedClass, record.time, in indexClassOperation() 98 process.startOperation(record.tid, loadedClass, record.time, in indexClassOperation()
|
D | MemoryUsage.java | 232 final Process process = Runtime.getRuntime().exec(commands); in measure() local 234 final InputStream err = process.getErrorStream(); in measure() 247 new InputStreamReader(process.getInputStream())); in measure() 258 process.destroy(); in measure()
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | OpReorderTest.java | 83 process(); in testMoveRemoved() 90 process(); in testMoveRemove() 97 process(); in test1() 104 process(); in test2() 111 process(); in test3() 118 process(); in test4() 125 process(); in test5() 132 process(); in test6() 139 process(); in test7() 146 process(); in test8() [all …]
|
/frameworks/av/media/libeffects/testlibs/ |
D | AudioFormatAdapter.h | 74 void process(const void * pIn, void * pOut, uint32_t numSamples) { in process() function 81 mpProcessor->process( in process() 86 mpProcessor->process( in process() 99 mpProcessor->process(mBuffer, mBuffer, numSamplesIter); in process()
|
D | AudioShelvingFilter.h | 98 void process(const audio_sample_t in[], audio_sample_t out[], in process() function 99 int frameCount) { mBiquad.process(in, out, frameCount); } in process()
|
D | AudioPeakingFilter.h | 104 void process(const audio_sample_t in[], audio_sample_t out[], in process() function 105 int frameCount) { mBiquad.process(in, out, frameCount); } in process()
|
/frameworks/base/docs/html/training/articles/ |
D | memory.jd | 91 <li>Each app process is forked from an existing process called Zygote. 92 The Zygote process starts when the system boots and loads common framework code and resources 93 (such as activity themes). To start a new app process, the system forks the Zygote process then 94 loads and runs the app's code in the new process. This allows most of the RAM pages allocated for 97 <li>Most static data is mmapped into a process. This not only allows that same data to be shared 119 <li>The Dalvik heap for each process is constrained to a single virtual memory range. This defines 161 For example, when the user first launches an app, a process is created for it, but when the user 162 leaves the app, that process does <em>not</em> quit. The system keeps the process cached, so if 163 the user later returns to the app, the process is reused for faster app switching.</p> 165 <p>If your app has a cached process and it retains memory that it currently does not need, [all …]
|
/frameworks/base/docs/html/guide/faq/ |
D | framework.jd | 7 application run in a single process?</a></li> 9 an application process?</a></li> 26 single process?</h2> 28 <p>All Activities and Services in an application run in a single process by 29 default. If needed, you can declare an <code>android:process</code> attribute 31 another process.</p> 38 process?</h2> 40 <p>By default, all of the application code in a single process runs 44 separate pool of transaction threads in each process to dispatch all 72 components run in the same process through the use of a singleton. [all …]
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/ |
D | BackDropperFilter.java | 697 public void process(FilterContext context) { in process() method in BackDropperFilter 724 copyShaderProgram.process(video, mVideoInput); in process() 725 copyShaderProgram.process(background, mBgInput); in process() 736 copyShaderProgram.process(mVideoInput, mBgMean[inputIndex]); in process() 742 mBgDistProgram.process(distInputs, mDistance); in process() 747 mBgMaskProgram.process(mDistance, mMask); in process() 753 mAutomaticWhiteBalanceProgram.process(autoWBInputs, mAutoWB); in process() 760 copyShaderProgram.process(mMask, mMaskVerify[outputIndex]); in process() 772 mMaskVerifyProgram.process(maskVerifyInputs, mMaskVerify[outputIndex]); in process() 781 copyShaderProgram.process(mMaskVerify[outputIndex], mMaskAverage); in process() [all …]
|
/frameworks/native/services/inputflinger/tests/ |
D | InputReader_test.cpp | 879 virtual void process(const RawEvent* rawEvent) { in process() function in android::FakeInputMapper 1372 mDevice->process(&event, 1); in TEST_F() 1433 static void process(InputMapper* mapper, nsecs_t when, int32_t deviceId, int32_t type, in process() function in android::InputMapperTest 1441 mapper->process(&event); in process() 1515 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_LID, 1); in TEST_F() 1516 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_JACK_PHYSICAL_INSERT, 1); in TEST_F() 1517 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_HEADPHONE_INSERT, 0); in TEST_F() 1518 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SYN, SYN_REPORT, 0); in TEST_F() 1542 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_KEY, originalScanCode, 1); in testDPadKeyRotation() 1548 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_KEY, originalScanCode, 0); in testDPadKeyRotation() [all …]
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
D | ImageGoodnessFilterTest.java | 63 process(); in testAwfulPicture() 91 process(); in testBadPicture() 119 process(); in testOkPicture() 147 process(); in testGoodPicture() 175 process(); in testGreatPicture()
|
D | AverageFilterTest.java | 38 process(); in testAverageFilter() 49 process(); in testAverageFilter2()
|
/frameworks/native/services/sensorservice/ |
D | RotationVectorSensor.h | 41 virtual bool process(sensors_event_t* outEvent, 55 virtual bool process(sensors_event_t* outEvent,
|
D | SensorInterface.h | 36 virtual bool process(sensors_event_t* outEvent, 72 virtual bool process(sensors_event_t* outEvent,
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
D | SaturateFilter.java | 113 public void process(FilterContext context) { in process() method in SaturateFilter 129 mHerfProgram.process(input, output); in process() 131 mBenProgram.process(input, output); in process()
|
D | ResizeFilter.java | 86 public void process(FilterContext env) { in process() method in ResizeFilter 107 mProgram.process(mipmapped, output); in process() 110 mProgram.process(input, output); in process()
|
D | GrainFilter.java | 152 public void process(FilterContext context) { in process() method in GrainFilter 180 mNoiseProgram.process(empty, noiseFrame); in process() 184 mGrainProgram.process(inputs, output); in process()
|
/frameworks/base/libs/hwui/thread/ |
D | TaskProcessor.h | 36 virtual void process(const sp<TaskBase>& task) = 0; 50 virtual void process(const sp<TaskBase>& task) { in process() function
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | Base64Test.java | 248 encoder.process(input, 0, 3, false); in XXXtestEncodeInternal() 252 encoder.process(input, 0, 3, false); in XXXtestEncodeInternal() 256 encoder.process(input, 0, 1, false); in XXXtestEncodeInternal() 260 encoder.process(input, 0, 1, false); in XXXtestEncodeInternal() 264 encoder.process(input, 0, 1, false); in XXXtestEncodeInternal() 268 encoder.process(input, 0, 2, false); in XXXtestEncodeInternal() 272 encoder.process(input, 0, 2, false); in XXXtestEncodeInternal() 276 encoder.process(input, 0, 2, false); in XXXtestEncodeInternal() 280 encoder.process(input, 0, 1, true); in XXXtestEncodeInternal()
|