예제 #1
0
파일: system.py 프로젝트: amirgeva/coide
def startSymbolScan(ws):
    utils.timestamp("start scan process")
    if not noMP:
        global scannerProcess
        global scanStarted
        global workspacePath
        if scanq and not scanStarted:
            scanStarted = True
            workspacePath = ws
            scannerProcess = Process(target=symbolScan, args=(scanq, workspacePath))
            scannerProcess.start()
    else:
        global libSyms
        global wsSyms
        global wsLibs
        import symbolscanner

        (libSyms, wsSyms, wsLibs) = symbolscanner.getLibrarySymbols(workspacePath)
예제 #2
0
파일: system.py 프로젝트: lifa123/coide
def startSymbolScan(ws):
    utils.timestamp('start scan process')
    if not noMP:
        global scannerProcess
        global scanStarted
        global workspacePath
        if scanq and not scanStarted:
            scanStarted = True
            workspacePath = ws
            scannerProcess = Process(target=symbolScan,
                                     args=(scanq, workspacePath))
            scannerProcess.start()
    else:
        global libSyms
        global wsSyms
        global wsLibs
        import symbolscanner
        (libSyms, wsSyms,
         wsLibs) = symbolscanner.getLibrarySymbols(workspacePath)
예제 #3
0
파일: system.py 프로젝트: amirgeva/coide
def symbolScan(q, ws):
    import symbolscanner

    q.put(symbolscanner.getLibrarySymbols(ws))
예제 #4
0
파일: system.py 프로젝트: lifa123/coide
def symbolScan(q, ws):
    import symbolscanner
    q.put(symbolscanner.getLibrarySymbols(ws))