Searched refs:proc (Results 51 - 63 of 63) sorted by relevance

123

/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp974 void* proc = NULL; local
976 proc = dlsym(cnx->libEgl, procname);
977 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
979 proc = dlsym(cnx->libGles2, procname);
980 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
982 proc = dlsym(cnx->libGles1, procname);
983 if (proc) return (__eglMustCastToProperFunctionPointerType)proc;
[all...]
/frameworks/native/vulkan/libvulkan/
H A Dapi_gen.cpp34 #define INIT_PROC(required, obj, proc) \
36 data.dispatch.proc = \
37 reinterpret_cast<PFN_vk##proc>(get_proc(obj, "vk" #proc)); \
38 if (UNLIKELY(required && !data.dispatch.proc)) { \
39 ALOGE("missing " #obj " proc: vk" #proc); \
46 #define INIT_PROC_EXT(ext, required, obj, proc) \
49 INIT_PROC(required, obj, proc); \
51 data.dispatch.proc
516 PFN_vkVoidFunction proc; member in struct:vulkan::api::__anon1934::Hook
[all...]
/frameworks/rs/tests/lldb/
H A Drun_tests.py360 # can't kill a dead proc
759 proc = subprocess.Popen(params, stdout=subprocess.PIPE)
764 stdout = proc.communicate()[0]
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java721 RunningAppProcessInfo proc = procs.get(i);
722 if (proc.pid == pid && proc.uid == uid
723 && proc.importance == IMPORTANCE_FOREGROUND) {
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp78 // This matches the /proc/pid/exe link instead of /proc/pid/cmdline.
293 if (!(d = opendir("/proc"))) {
294 printf("Failed to open /proc (%s)\n", strerror(errno));
311 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/cmdline", pid);
322 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/comm", pid);
362 snprintf(taskpath, sizeof(taskpath), "/proc/%d/task", pid);
384 snprintf(commpath, sizeof(commpath), "/proc/%d/comm", tid);
424 snprintf(path, sizeof(path), "/proc/%d/wchan", tid);
490 snprintf(path, sizeof(path), "/proc/
893 DIR *proc = opendir("/proc"); local
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java841 String proc = getNextArgRequired();
843 mInterface.setDumpHeapDebugLimit(proc, 0, Long.parseLong(limit), null);
848 String proc = getNextArgRequired();
849 mInterface.setDumpHeapDebugLimit(proc, 0, -1, null);
1684 String proc = getNextArgRequired();
1713 if (!mInterface.setProcessMemoryTrimLevel(proc, userId, level)) {
H A DActivityRecord.java2657 ProcessRecord proc = app;
2658 if (proc == null) {
2659 proc = service.mProcessNames.get(processName, info.applicationInfo.uid);
2661 return proc != null && proc.thread != null;
H A DBroadcastQueue.java877 ProcessRecord proc = mService.mPidsSelfLocked.get(mPendingBroadcast.curApp.pid);
878 isDead = proc == null || proc.crashing;
H A DActivityStackSupervisor.java2729 ProcessRecord proc = uids.valueAt(j);
2730 if (proc.userId != tr.userId) {
2734 if (proc == mService.mHomeProcess) {
2738 if (!proc.pkgList.containsKey(pkg)) {
2743 for (int k = 0; k < proc.activities.size(); k++) {
2744 TaskRecord otherTask = proc.activities.get(k).getTask();
2752 if (proc.foregroundServices) {
2758 procsToKill.add(proc);
/frameworks/native/vulkan/tools/
H A Dvkinfo.cpp55 [[noreturn]] void die(const char* proc, VkResult result) { argument
76 fprintf(stderr, "%s failed: %s (%d)\n", proc, result_str, result);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java347 * Times from /proc/stat (but measured in milliseconds).
1450 * The most recent reported count from /proc/wakelocks.
1455 * The reported count from /proc/wakelocks when unplug() was last
1461 * The most recent reported total_time from /proc/wakelocks.
1467 * The reported total_time from /proc/wakelocks when unplug() was last
3966 public void reportExcessiveWakeLocked(int uid, String proc, long overTime, long usedTime) { argument
3970 u.reportExcessiveWakeLocked(proc, overTime, usedTime);
3974 public void reportExcessiveCpuLocked(int uid, String proc, long overTime, long usedTime) { argument
3978 u.reportExcessiveCpuLocked(proc, overTime, usedTime);
6702 Proc proc
8549 reportExcessiveWakeLocked(String proc, long overTime, long usedTime) argument
8556 reportExcessiveCpuLocked(String proc, long overTime, long usedTime) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java2901 String proc = procSeq.toString();
2902 char c = proc.charAt(0);
2904 if (proc.length() < 2) {
2905 outError[0] = "Bad " + type + " name " + proc + " in package " + pkg
2909 String subName = proc.substring(1);
2912 outError[0] = "Invalid " + type + " name " + proc + " in package "
2916 return pkg + proc;
2918 String nameError = validateName(proc, true, false);
2919 if (nameError != null && !"system".equals(proc)) {
2920 outError[0] = "Invalid " + type + " name " + proc
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 357 milliseconds

123