Home
last modified time | relevance | path

Searched refs:instructions (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
DLockFindingClassVisitor.java129 InsnList instructions = mn.instructions; in visitEnd() local
137 for (int i = 0; i < instructions.size(); i++) { in visitEnd()
142 AbstractInsnNode s = instructions.getFirst(); in visitEnd()
150 for (int i = 0; i < instructions.size(); i++) { in visitEnd()
151 AbstractInsnNode s = instructions.get(i); in visitEnd()
183 checkState(instructions.get(i + 1).getType() == AbstractInsnNode.LABEL, in visitEnd()
187 checkElementIndex(labelIndex, instructions.size()); in visitEnd()
189 LabelNode label = (LabelNode)instructions.get(labelIndex); in visitEnd()
236 InsnList instructions = mn.instructions; in insertInvokeAcquire() local
240 instructions.insertBefore(node, new InsnNode(Opcodes.DUP)); in insertInvokeAcquire()
[all …]
/frameworks/libs/binary_translation/assembler/
DAndroid.bp45 "instructions/insn_def_x86.json",
46 "instructions/insn_def_x86_32.json",
53 "instructions/insn_def_x86.json",
54 "instructions/insn_def_x86_64.json",
/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dmain.cpp92 std::vector<uint8_t> instructions = provider.ConsumeBytes<uint8_t>( in doReadFuzz() local
105 FUZZ_LOG() << "instructions: " << HexString(instructions.data(), instructions.size()); in doReadFuzz()
107 FuzzedDataProvider instructionsProvider(instructions.data(), instructions.size()); in doReadFuzz()
/frameworks/native/libs/binder/rust/tests/parcel_fuzzer/
Dparcel_fuzzer.rs38 ReadBasicTypes { instructions: Vec<usize> },
134 ReadOperation::ReadBasicTypes { instructions } => { in do_read_fuzz()
135 for instruction in instructions.iter() { in do_read_fuzz()
/frameworks/base/services/core/jni/
Dcom_android_server_pm_PackageManagerShellCommandDataLoader.cpp792 std::vector<IncFsDataBlock> instructions; in receiver() local
857 instructions.push_back(inst); in receiver()
860 writeInstructions(instructions); in receiver()
862 writeInstructions(instructions); in receiver()
870 void writeInstructions(std::vector<IncFsDataBlock>& instructions) { in writeInstructions() argument
871 auto res = this->mIfs->writeBlocks(instructions); in writeInstructions()
872 if (res != instructions.size()) { in writeInstructions()
874 int(instructions.size())); in writeInstructions()
876 instructions.clear(); in writeInstructions()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
DChallengeDialogs.kt65 val (title, instructions) = if (useRetryStrings) { in <lambda>() constant
113 editText.setHint(instructions) in <lambda>()
/frameworks/layoutlib/create/tests/res/mock_data/
DREADME.md5 First, use set up instructions from layoutlib tutorial to make commands like `m` work.
/frameworks/base/core/java/android/appwidget/
Dflags.aconfig33 description: "Enable support for transporting draw instructions as data parcel"
/frameworks/compile/libbcc/tests/libbcc/
Dgetelementptr.ll2 ; instructions into the driver info structure as expected - namely,
4 ; the instructions that are generated are in the loop header.
/frameworks/base/tests/CompanionDeviceMultiDeviceTests/
DREADME.md11 To test on virtual devices, follow instructions to [set up netsim on cuttlefish](https://g3doc.corp…
/frameworks/base/apct-tests/perftests/surfaceflinger/
DREADME.md5 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
/frameworks/minikin/app/
DAndroid.bp15 // see how_to_run.txt for instructions on running these tests
/frameworks/base/apct-tests/perftests/windowmanager/
DREADME.md5 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
/frameworks/minikin/tests/stresstest/
DAndroid.bp15 // see how_to_run.txt for instructions on running these tests
/frameworks/compile/libbcc/lib/
DRSAddDebugInfoPass.cpp183 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo()
250 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo()
/frameworks/base/apct-tests/perftests/inputmethod/
DREADME.md7 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
/frameworks/libs/binary_translation/backend/
DAndroid.bp76 // fields. lir instructions MUST end with `lir_instructions.json` and
105 // fields. lir instructions MUST end with `lir_instructions.json` and
/frameworks/base/tools/lock_agent/
Dagent.cpp140 for (auto it = c.instructions.begin(); it != c.instructions.end(); ++it) { in transform()
188 cIr->instructions.InsertBefore(instructionAfter, instruction); in addInst()
/frameworks/minikin/tests/unittest/
DAndroid.bp15 // see how_to_run.txt for instructions on running these tests
/frameworks/av/media/module/codecs/amrwb/enc/
DAndroid.bp99 // don't actually generate neon instructions, see bug 26932980
/frameworks/native/cmds/evemu-record/
DREADME.md10 Android-specific features. For usage instructions, run `evemu-record --help`.
/frameworks/av/media/tests/benchmark/
DREADME.md23 … can use a different location, but you have to modify the rest of the instructions to replace /dat…
125 To get the resource files for the test follow instructions given in [Resources](#Resources)
179 To get the resource files for the test follow instructions given in [Resources](#Resources)
/frameworks/base/core/proto/android/media/
Daudioattributes.proto100 // instructions or help utterances.
/frameworks/base/tools/protologtool/
DREADME.md114 … logging groups or statements you should build the project and follow instructions printed by the …
/frameworks/base/core/java/android/widget/
DRemoteViews.java3931 SetDrawInstructionAction(@NonNull final DrawInstructions instructions) {
3932 mInstructions = instructions;
7631 private DrawInstructions(@NonNull List<byte[]> instructions) {
7633 mInstructions = new ArrayList<>(instructions.size());
7634 for (byte[] instruction : instructions) {
7649 final List<byte[]> instructions = new ArrayList<>(size);
7652 instructions.add(instruction);
7654 return new DrawInstructions(instructions);
7663 final List<byte[]> instructions = drawInstructions.mInstructions;
7664 dest.writeInt(instructions.size());
[all …]

12