Home
last modified time | relevance | path

Searched refs:instrumentedBytecode (Results 1 – 3 of 3) sorted by relevance

/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/instrumentor/
DClassInstrumentor.kt25 var instrumentedBytecode = bytecode variable
34instrumentedBytecode = edgeCoverageInstrumentor.instrument(internalClassName, instrumentedBytecode) in coverage()
39 instrumentedBytecode = in traceDataFlow()
40 … TraceDataFlowInstrumentor(instrumentations).instrument(internalClassName, instrumentedBytecode) in traceDataFlow()
44 instrumentedBytecode = HookInstrumentor( in hooks()
46 java6Mode = extractClassFileMajorVersion(instrumentedBytecode) < 51, in hooks()
48 ).instrument(internalClassName, instrumentedBytecode) in hooks()
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/agent/
DRuntimeInstrumentor.kt189 val (instrumentedBytecode, duration) = measureTimedValue { in <lambda>() constant
199 …val sizeIncrease = ((100.0 * (instrumentedBytecode.size - classfileBuffer.size)) / classfileBuffer… in <lambda>()
207 return instrumentedBytecode in <lambda>()
240 instrumentedBytecode in <lambda>()
/external/jazzer-api/src/jmh/java/com/code_intelligence/jazzer/instrumentor/
DCoverageInstrumentationBenchmark.java162 byte[] instrumentedBytecode = instrumentor.instrument(name.replace('.', '/'), bytecode); in loadClass()
163 return defineClass(name, instrumentedBytecode, 0, instrumentedBytecode.length); in loadClass()