Package soot.jimple

Examples of soot.jimple.Stmt


                if (method.isConcrete()) {
                    CompleteUnitGraph cug = new CompleteUnitGraph(
                            method.retrieveActiveBody());
                    // each statement in the unit in the class
                    for (Unit unit : cug) {
                        Stmt stmt = (Stmt) unit;
                        if (stmt.containsInvokeExpr()) {
                            InvokeExpr expr = stmt.getInvokeExpr();
                            final String invokedSignature = expr.getMethod()
                                    .getSignature();
                            if (invokedSignature.equals(targetSignature)) {
                                // we have found an invocation of our target
View Full Code Here


                .getPossibleNameValuesOfMakeURLInvocation(expr);

        MethodStatementContainer container = stateMachine
                .getMakeURLLocation(expr);
        SootMethod enclosingMethod = container.getMethod();
        Stmt statement = container.getStatement();

        Set<SootClass> targetedWebApps = getTargetedWebApps(stateMachine, expr,
                makeURLMethod, enclosingMethod, statement, interfacee);

        // makeURL called in an unknown context
View Full Code Here

TOP

Related Classes of soot.jimple.Stmt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.