HomeSort by relevance Sort by last modified time
    Searched refs:lib_file (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/tools/cygprofile/
symbolize.py 67 def ParseLibSymbols(lib_file):
71 lib_file: the library or executable that contains the profiled code
75 in lib_file and map of addresses to all symbols at a particular address
77 cmd = ['nm', '-S', '-n', lib_file]
170 def AddrToLine(addr, lib_file):
172 cmd = ['addr2line', '-f', '-e', lib_file, hex(addr)]
190 parser = optparse.OptionParser('usage: %prog [options] log_file lib_file')
199 parser.error('expected 2 args: log_file lib_file')
201 (log_file, lib_file) = args
204 lib_name = lib_file.split('/')[-1].strip(
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
http_server.py 182 lib_file = 'liblightcomp.dylib'
183 self._filesystem.copyfile(self._filesystem.join(module_path, lib_file),
184 self._filesystem.join(tmp_module_path, lib_file))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 234 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
249 extra_preargs.extend(["--output-lib", lib_file])
255 #extra_preargs.extend(["-Wl,--out-implib,%s" % lib_file])
ccompiler.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 234 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
249 extra_preargs.extend(["--output-lib", lib_file])
255 #extra_preargs.extend(["-Wl,--out-implib,%s" % lib_file])
ccompiler.py     [all...]
  /external/sonivox/jet_tools/JetCreator/
JetFile.py 485 lib_file = (open(library,'rb'))
486 lib_file.seek(0,2)
487 file_size = lib_file.tell()
488 lib_file.seek(0)
495 output_file.write(lib_file.read())
496 lib_file.close()
    [all...]

Completed in 79 milliseconds