sys.getFunctionList

Here are the examples of the python api sys.getFunctionList taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : zoneCrawlr.py
with Apache License 2.0
from mitre

def get2ndOrderEffects(dataset, sysname ):
    ret = []
    temp = set()
    sys = findTargetSystem(dataset, sysname )
    if sys:
       flist = sys.getFunctionList()
       if flist:
          for f in flist:
             fname = f.getName()
             temp.add(fname )   
             
    for j in temp:
        ret.append (j)
    return ret

#returns list of capabiities that sysname supports
def get3rdOrderEffects(dataset, sysname ):