/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/ |
BaseJavadocNodeScanner.java | 19 import com.google.currysrc.api.process.Context; 20 import com.google.currysrc.api.process.Processor; 21 import com.google.currysrc.api.process.Reporter; 31 * A base class for processors that process Javadoc nodes and may rewrite the AST. All Javadoc nodes 36 @Override public final void process(Context context, CompilationUnit cu) { method in class:BaseJavadocNodeScanner
|
/packages/apps/Nfc/src/com/android/nfc/ |
NfcApplication.java | 22 import android.os.Process; 45 // We start a service in a separate process to do 47 // object in those cases, hence check the name of the process 49 // handover process 55 if (appInfo.pid == Process.myPid()) {
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
PriorityThreadFactoryTest.java | 32 priorityTest(android.os.Process.THREAD_PRIORITY_BACKGROUND); 33 priorityTest(android.os.Process.THREAD_PRIORITY_DEFAULT); 34 priorityTest(android.os.Process.THREAD_PRIORITY_FOREGROUND); 60 int tid = android.os.Process.myTid(); 61 mPriority = new Integer(android.os.Process.getThreadPriority(tid));
|
/external/ltrace/ |
breakpoints.c | 45 arch_translate_address_dyn(struct process *proc, 63 breakpoint_on_hit(struct breakpoint *bp, struct process *proc) 71 breakpoint_on_continue(struct breakpoint *bp, struct process *proc) 81 breakpoint_on_retract(struct breakpoint *bp, struct process *proc) 89 breakpoint_on_install(struct breakpoint *bp, struct process *proc) 98 struct breakpoint *bp, struct process *proc) 113 address2bpstruct(struct process *proc, arch_addr_t addr) 128 os_breakpoint_init(struct process *proc, struct breakpoint *sbp) 147 arch_breakpoint_init(struct process *proc, struct breakpoint *sbp) 178 * need process for anything. * [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
Optimizer.java | 59 * @param rmeth method to process 80 * @param rmeth method to process 120 * @param rmeth method to process 155 MoveParamCombiner.process(ssaMeth); 159 SCCP.process(ssaMeth); 160 DeadCodeRemover.process(ssaMeth); 165 LiteralOpUpgrader.process(ssaMeth); 166 DeadCodeRemover.process(ssaMeth); 175 EscapeAnalysis.process(ssaMeth); 176 DeadCodeRemover.process(ssaMeth) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
Optimizer.java | 60 * @param rmeth method to process 81 * @param rmeth method to process 121 * @param rmeth method to process 156 MoveParamCombiner.process(ssaMeth); 160 SCCP.process(ssaMeth); 161 DeadCodeRemover.process(ssaMeth); 166 LiteralOpUpgrader.process(ssaMeth); 167 DeadCodeRemover.process(ssaMeth); 176 EscapeAnalysis.process(ssaMeth); 177 DeadCodeRemover.process(ssaMeth) [all...] |
/external/webrtc/webrtc/video/ |
call_stats_unittest.cc | 53 call_stats_->Process(); 59 call_stats_->Process(); 73 call_stats_->Process(); 78 call_stats_->Process(); 84 call_stats_->Process(); 89 call_stats_->Process(); 113 call_stats_->Process(); 122 call_stats_->Process(); 130 call_stats_->Process(); 146 call_stats_->Process(); [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioFormatAdapter.h | 32 // void process(const audio_sample_t * pIn, 39 // calling its process() function directly, work with the process() function of 44 // bufSize The maximum number of samples (single channel) to process on a 47 // overhead, resulting from multiple calls to the underlying process() 48 // per a single call to this class's process(). 68 // Process a block of samples. 73 // numSamples The number of multi-channel samples to process. 74 void process(const void * pIn, void * pOut, uint32_t numSamples) { function in class:android::AudioFormatAdapter 81 mpProcessor->process( [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/ |
memory_dump_track_util_test.html | 74 // Process A: VM regions defined -> sum their PSS values (111). 75 // Process B: VM regions undefined and no previous value -> assume zero. 76 // Process C: Memory dump not present -> assume process not alive (0). 87 // Process A: VM regions undefined -> assume previous value (111). 88 // Process B: VM regions defined -> sum their PSS values (555). 89 // Process C: VM regions undefined -> assume previous value (0). 100 // Process A: VM regions defined -> sum their PSS values (0). 101 // Process B: Memory dump not present -> assume process not alive (0) [all...] |
process_summary_track_test.html | 20 var process; 22 process = model.getOrCreateProcess(1); 25 var thread1 = process.getOrCreateThread(1); 28 var thread2 = process.getOrCreateThread(2); 33 var rects = ProcessSummaryTrack.buildRectsFromProcess(process); 42 var process; 44 process = model.getOrCreateProcess(1); 47 var thread1 = process.getOrCreateThread(1); 56 var thread2 = process.getOrCreateThread(2); 65 var rects = ProcessSummaryTrack.buildRectsFromProcess(process); [all...] |
/frameworks/base/core/java/android/content/ |
ComponentCallbacks2.java | 28 * your app by allowing the system to keep your process alive longer. That is, 30 * the system is more likely to kill your process while it is cached in the least-recently used 44 * Your app is not yet considered a killable process, but the system will begin killing 55 * <li>When your app's process resides in the background LRU list: 57 * <li>{@link #TRIM_MEMORY_BACKGROUND} <br>The system is running low on memory and your process is 58 * near the beginning of the LRU list. Although your app process is not at a high risk of being 60 * resources that are easy to recover so your process will remain in the list and resume 62 * <li>{@link #TRIM_MEMORY_MODERATE} <br>The system is running low on memory and your process is 64 * chance your process will be killed. 65 * <li>{@link #TRIM_MEMORY_COMPLETE} <br>The system is running low on memory and your process i [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
memory_dump_event_unittest.py | 41 process = mock.Mock() 42 process.pid = event['pid'] 43 return memory_dump_event.ProcessMemoryDumpEvent(process, [event]) 49 process = mock.Mock() 50 process.pid = 1234 53 pid=process.pid, allocators={ 62 pid=process.pid, allocators={ 72 memory_dump = memory_dump_event.ProcessMemoryDumpEvent(process, events) 123 process = mock.Mock() 124 process.pid = 123 [all...] |
/external/libchrome/base/process/ |
launch.h | 19 #include "base/process/process.h" 20 #include "base/process/process_handle.h" 64 // If true, wait for the process to complete. 74 // If true, the new process inherits handles from the parent. In production 77 // leak to the child process, causing errors such as open socket hangs. 94 // If non-null, launches the application in that job object. The process will 107 // If set to true, ensures that the child process is launched with the 113 // process environment. Empty (the default) means to inherit the same 117 // Clear the environment for the new process before processing changes fro [all...] |
/external/libchrome/base/ |
base.gypi | 469 'process/internal_linux.cc', 470 'process/internal_linux.h', 471 'process/kill.cc', 472 'process/kill.h', 473 'process/kill_mac.cc', 474 'process/kill_posix.cc', 475 'process/kill_win.cc', 476 'process/launch.cc', 477 'process/launch.h', 478 'process/launch_ios.cc' [all...] |
/cts/tests/tests/os/src/android/os/health/cts/ |
SystemHealthManagerTest.java | 21 import android.os.Process; 52 Assert.assertNotNull(healthy.takeUidSnapshot(Process.myUid())); 56 * Tests that takeUidSnapshot on the system process throws a SecurityException. 65 healthy.takeUidSnapshot(Process.SYSTEM_UID); 94 Process.myUid(), 95 Process.myUid(), 103 * Tests that takeUidSnapshot on the system process throws a SecurityException. 113 Process.myUid(), 114 Process.SYSTEM_UID,
|
/external/autotest/site_utils/ |
rpc_logserver.py | 34 process = None variable in class:LogServer 38 """Start Log Record Socket Receiver in a new process. 45 if LogServer.process: 48 LogServer.process = multiprocessing.Process( 51 LogServer.process.start() 79 if LogServer.process: 80 LogServer.process.terminate() 81 LogServer.process = None
|
/external/libchrome/base/posix/ |
unix_domain_socket_linux.h | 15 #include "base/process/process_handle.h" 28 // Use to enable receiving process IDs in RecvMsgWithPid. Should be called on 48 // Same as RecvMsg above, but also returns the sender's process ID (as seen 50 // receive process IDs, EnableReceiveProcessId() should be called on the 60 // 1. This process creates a UNIX SEQPACKET socketpair. Using 63 // 2. This process writes a request to |fd| with an SCM_RIGHTS control 65 // 3. This process blocks reading from the other end of the fresh 67 // 4. The target process receives the request, processes it and writes the 69 // 5. This process wakes up and continues.
|
/external/libchrome/sandbox/linux/syscall_broker/ |
broker_process.h | 15 #include "base/process/process.h" 26 // Create a new "broker" process to which we can send requests via an IPC 27 // channel by forking the current process. 30 // A process would typically create a broker process before entering 54 // Will initialize the broker process. There should be no threads at this 56 // broker_process_init_callback will be called in the new broker process, 61 // X_OK will always return an error in practice since the broker process
|
/external/ltrace/sysdeps/linux-gnu/arm/ |
regs.c | 43 arm_get_register(struct process *proc, enum arm_register reg, uint32_t *lp) 54 arm_set_register(struct process *proc, enum arm_register reg, uint32_t lp) 61 arm_get_register_offpc(struct process *proc, enum arm_register reg, 72 arm_get_shifted_register(struct process *proc, uint32_t inst, int carry, 124 get_register_nocheck(struct process *proc, enum arm_register r) 135 get_instruction_pointer(struct process *proc) 141 set_instruction_pointer(struct process *proc, arch_addr_t addr) 148 get_stack_pointer(struct process *proc) 154 get_return_addr(struct process *proc, arch_addr_t stack_pointer)
|
/external/selinux/libselinux/man/man3/ |
getcon.3 | 3 getcon, getprevcon, getpidcon \- get SELinux security context of a process 9 setcon \- set current security context of a process 40 retrieves the context of the current process, which must be free'd with 47 returns the process context for the specified PID. 66 sets the current security context of the process to a new value. Note 80 attempts by the process to use any existing descriptors (including 96 threads running in the same process since this would yield 100 is permitted for threads within a multi-threaded process if the 106 If the process was being ptraced at the time of the
|
/system/connectivity/shill/ |
external_task.h | 68 // Forks off a process to run |program|, with the command-line 72 // If |terminate_with_parent| is true, the child process will be 73 // configured to terminate itself if this process dies. Otherwise, 74 // the child process will retain its default behavior. 80 // kRPCTaskPathVariable, as that may prevent the child process 105 // Called when the external process exits. 117 // The PID of the spawned process. May be 0 if no process has been 118 // spawned yet or the process has died.
|
/frameworks/base/keystore/tests/src/android/security/ |
KeyStoreTest.java | 22 import android.os.Process; 174 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 175 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.WIFI_UID, 177 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 179 assertTrue(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.WIFI_UID, 181 assertTrue(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 185 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.BLUETOOTH_UID)); 186 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.BLUETOOTH_UID, 188 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.BLUETOOTH_UID)); 190 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.BLUETOOTH_UID [all...] |
/external/autotest/client/site_tests/security_OpenFDs/ |
security_OpenFDs.py | 39 @param pid: pid of process 65 Dumps a systemwide snapshot of open-fd and process table 94 def find_pids(self, process, arg_regex): 96 Finds all pids for |process| whose command line arguments 99 @param process: process name 102 p1 = subprocess.Popen(['ps', '-C', process, '-o', 'pid,command'], 104 # We're adding '--ignored= --type=renderer' to the GPU process cmdline 106 # This process has different characteristics, so we need to avoid 119 def check_process(self, process, args, filters, typechecker) [all...] |
/external/autotest/client/site_tests/security_ASLR/ |
security_ASLR.py | 24 """Returns the PID of the first process with the given name.""" 32 class Process(object): 33 """Holds information about a process. 35 Stores basic information about a process. This class is a base for 39 _name: String name of process. 40 _service_name: Name of the service corresponding to the process. 41 _parent: String name of process's parent. Defaults to None. 56 """Gets pid of process, waiting for it if not found. 59 error.TestFail: corresponding process is not found. 75 # The process could not be found. We then sleep, hoping th [all...] |
/external/autotest/client/common_lib/cros/ |
process_watcher.py | 11 # Use this with ProcessWatcher to start your process in a minijail. This 18 """Start a process, and terminate it later.""" 21 """Construst a ProcessWatcher without starting the process. 23 @param command: string command to use to start the process. 39 """Start a (potentially remote) instance of the process.""" 51 """Close the (potentially remote) instance of the process.
|