/aosp12/bionic/libc/kernel/uapi/asm-x86/asm/ |
H A D | a.out.h | 21 struct exec { struct 22 unsigned int a_info; 23 unsigned a_text; 24 unsigned a_data; 25 unsigned a_bss; 26 unsigned a_syms; 27 unsigned a_entry; 28 unsigned a_trsize; 29 unsigned a_drsize;
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/ |
H A D | SysUIConcurrencyModule.java | 127 public static RepeatableExecutor provideRepeatableExecutor(@Background DelayableExecutor exec) { in provideRepeatableExecutor() 137 public static RepeatableExecutor provideBackgroundRepeatableExecutor( in provideBackgroundRepeatableExecutor() 148 public static RepeatableExecutor provideMainRepeatableExecutor(@Main DelayableExecutor exec) { in provideMainRepeatableExecutor()
|
/aosp12/bionic/libc/kernel/uapi/linux/ |
H A D | a.out.h | 52 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 54 #define N_MACHTYPE(exec) ((enum machine_type) (((exec).a_info >> 16) & 0xff)) argument 55 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 56 #define N_SET_INFO(exec,magic,type,flags) ((exec).a_info = ((magic) & 0xffff) | (((int) (type) & 0x… argument 57 #define N_SET_MAGIC(exec,magic) ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)… argument 58 #define N_SET_MACHTYPE(exec,machtype) ((exec).a_info = ((exec).a_info & 0xff00ffff) | ((((int) (mac… argument 59 #define N_SET_FLAGS(exec,flags) ((exec).a_info = ((exec).a_info & 0x00ffffff) | (((flags) & 0xff) <… argument
|
/aosp12/packages/apps/Car/Radio/src/com/android/car/radio/util/ |
H A D | Remote.java | 52 public static <V> V exec(RemoteFunction<V> func) { in exec() method in Remote 63 public static void exec(RemoteVoidFunction func) { in exec() method in Remote
|
/aosp12/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
H A D | Utils.java | 45 T exec() throws RemoteException; in exec() method 58 void exec() throws RemoteException; in exec() method
|
/aosp12/art/test/595-profile-saving/ |
H A D | profile-saving.cc | 40 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); in Java_Main_ensureProfilingInfo() local 70 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); in Java_Main_presentInProfile() local
|
/aosp12/packages/apps/Test/connectivity/PMC/ |
H A D | build_pmc.sh | 53 exec () { function
|
/aosp12/art/test/664-aget-verifier/ |
H A D | aget-verifier.cc | 35 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); in Java_Main_testCompiled() local
|
/aosp12/packages/apps/Traceur/src/com/android/traceur/ |
H A D | TraceUtils.java | 109 public static Process exec(String cmd) throws IOException { in exec() method in TraceUtils 113 public static Process exec(String cmd, String tmpdir) throws IOException { in exec() method in TraceUtils 117 public static Process exec(String cmd, String tmpdir, boolean logOutput) throws IOException { in exec() method in TraceUtils
|
/aosp12/system/bt/test/headless/ |
H A D | main.cc | 49 const char exec[] = "/system/bin/logcat"; in clear_logcat() local
|
/aosp12/system/iorap/src/maintenance/ |
H A D | controller.h | 56 std::shared_ptr<IExec> exec; member
|
/aosp12/art/test/661-oat-writer-layout/ |
H A D | oat_writer_layout.cc | 39 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); in Java_Main_getOatMethodQuickCode() local
|
/aosp12/art/test/660-clinit/src/ |
H A D | Main.java | 200 static int exec(int a, int b) { in exec() method in Add 217 static int exec(int a, int b) { in exec() method in Mul
|
/aosp12/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/ |
H A D | FileDeleteUiTest.java | 136 final ThreadPoolExecutor exec = new ThreadPoolExecutor( in createStubFiles() local
|
/aosp12/system/unwinding/libunwindstack/tests/ |
H A D | ElfTestUtils.cpp | 51 std::string exec(testing::internal::GetArgvs()[0]); in TestGetFileDirectory() local
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | ShellCommand.java | 34 public int exec(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, in exec() method in ShellCommand
|
H A D | AsyncTask.java | 357 public static void setDefaultExecutor(Executor exec) { in setDefaultExecutor() 708 public final AsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec, in executeOnExecutor()
|
/aosp12/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/ |
H A D | main.c | 304 int exec = 0, pass = 0, ret; in main() local
|
/aosp12/hardware/qcom/sdm845/data/ipacfg-mgr/ipanat/test/ |
H A D | main.c | 304 int exec = 0, pass = 0, ret; in main() local
|
/aosp12/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/test/ |
H A D | main.c | 304 int exec = 0, pass = 0, ret; in main() local
|
/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
H A D | DownloadScanner.java | 63 public void exec(MediaScannerConnection conn) { in exec() method in DownloadScanner.ScanRequest
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/ |
H A D | ControlsListingControllerImplTest.kt | 118 val exec = Executor { it.run() } regex
|
/aosp12/frameworks/libs/modules-utils/java/com/android/modules/utils/ |
H A D | BasicShellCommandHandler.java | 74 public int exec(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, in exec() method in BasicShellCommandHandler
|
/aosp12/frameworks/native/services/surfaceflinger/tests/ |
H A D | LayerTransactionTest.h | 236 void asTransaction(const std::function<void(Transaction&)>& exec) { in asTransaction()
|
/aosp12/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
H A D | BlockingGLTextureView.java | 379 private void exec(int msgid) { in exec() method in BlockingGLTextureView.RenderThread
|