Sourcetrail - free and open-source interactive source explorer

Overview

Sourcetrail

Sourcetrail is a free and open-source cross-platform source explorer that helps you get productive on unfamiliar source code.

Windows: Build status

Linux: Build Status

Links

"Sourcetrail User Interface"

Sourcetrail is:

  • free
  • working offline
  • operating on Windows, macOS and Linux
  • supporting C, C++, Java and Python
  • offering an SDK (SourcetrailDB) to write custom language extensions

Support Sourcetrail via Patreon

The ongoing development and regular software releases are made possible entirely by the support of these awesome patrons! If you'd like to join them, please consider becoming a patron of Sourcetrail.

Using Sourcetrail

To setup Sourcetrail on your machine, you can either download the respective build for your operating system from our list of Releases and install it on your machine, or use one of the following package managers:

After your installation is complete, follow our Quick Start Guide to get to know Sourcetrail.

How to Report Issues

You can post all your feature requests and bug reports on our issue tracker.

Reporting

Use the following template:

  • platform version:
  • Sourcetrail version:
  • description of the problem:
  • steps to reproduce the problem:

Supporting

If you want to support a certain feature request or you have the same bug that another user already reported, please let us know:

  • post a comment with "+1" to the issue
  • or send an email to [email protected] with the issue ID

How to Contribute

  • Please read and follow the steps in CONTRIBUTING.md file.
  • You may want to look out for issues labeled good first issue to find some initial tasks to tackle.
  • If you are looking for more information about Sourcetrail software development, please refer to our wiki.

How to Build

Building Sourcetrail requires several dependencies to be in place on your machine. However, our CMake based setup allows to disable indexing support for specific languages which reduces the number of dependencies to a minimum.

Building the Base Application

Required Tools

  • CMake v3.12 (required for Windows, Linux and MacOS)

  • Git (required for Windows, Linux and MacOS)

    • Reason: Used for version control and to automatically generate the Sourcetrail version number from commits and tags
    • Download: https://git-scm.com/download
    • Remarks: Make sure git is added to your PATH environment variable before running CMake
  • Visual Studio (required for Windows)

  • ccache (optional for Linux and MacOS)

Required dependencies

  • Boost 1.67

    • Reason: Used for file system access and interprocess communication
    • Prebuilt Download for Windows: https://sourceforge.net/projects/boost/files/boost-binaries/
    • Building for Unix:
      $ ./bootstrap.sh --with-libraries=filesystem,program_options,system,date_time
      $ ./b2 --link=static --variant=release --threading=multi --runtime-link=static --cxxflags=-fPIC
      
  • Qt 5.12.3

Building

On Windows

  • To set up your build environment run:

    $ git clone https://github.com/CoatiSoftware/Sourcetrail.git
    $ cd Sourcetrail
    $ mkdir -p build/win64
    $ cd build/win64
    $ cmake -G "Visual Studio 15 2017 Win64" -DBOOST_ROOT=<path/to/boost_1_67_0> -DQt5_DIR=<path/to/Qt/version/platform/compiler/lib/cmake/Qt5> ../..
    

    Hint: If you are using the CMake GUI, we recommend that you activate advanced mode. Also you may be required to add some of the defines via the "Add Entry" button.

  • After generating the build configuration, just open the Sourcetrail.sln file that was generated by CMake and build the Sourcetrail project.

On Unix

  • To set up your build environment run:
    $ cd Sourcetrail
    $ mkdir -p build/Release
    $ cd build/Release
    $ cmake -DCMAKE_BUILD_TYPE="Release" -DBOOST_ROOT=<path/to/boost_1_67_0> -DQt5_DIR=<path/to/Qt/version/platform/compiler/lib/cmake/Qt5> ../..
    
  • Now start the build with:
    $ make Sourcetrail
    

Running

  • Run Sourcetrail from within the build directory. During execution Sourcetrail needs resources from bin/app/data and bin/app/user. CMake creates symlinks within the build directory that make these directories accessible.

Enable C/C++ Language Support

Required dependencies

  • LLVM/Clang 11.0.0
    • Reason: Used for running the preprocessor on the indexed source code, building and traversing an Abstract Syntax Tree and generating error messages.
    • Building: Make sure to check out the correct tag: git checkout llvmorg-11.0.0
    • Building for Windows: Follow these steps to build the project. Run the cmake command exactly as described.
    • Building for Unix: Follow this installation guide to build the project. Make sure to build with -DLLVM_ENABLE_RTTI=ON.

Building

  • Run CMake with these additional options:
    -DClang_DIR=<path/to/llvm_build>/lib/cmake/clang
    -DBUILD_CXX_LANGUAGE_PACKAGE=ON
    
  • Build Sourcetrail as described above.

Enable Java Language Support

Required dependencies

  • JDK 1.8

    • Reason: Used to build the Java indexer and make it callable from the C++ code via JNI.
    • Remarks: Make sure that <jdk_root>/bin is available in your PATH environment variable and that the JAVA_HOME environment variable is set:
      JAVA_HOME=<path/to/Java>/jdk1.x.x_xxx
      
  • Maven

    • REASON: Used within Sourcetrail's automated tests.
    • Remarks: Make sure .../apache-maven-x.x.x/bin is available in your PATH environment variable and that both M2_HOME and MAVEN_HOME environment variables are set:
      M2_HOME=.../apache-maven-x.x.x
      MAVEN_HOME=.../apache-maven-x.x.x
      

Building

  • Run CMake with these additional options:
    -DBUILD_JAVA_LANGUAGE_PACKAGE=ON
    
  • Build Sourcetrail as described above.

Enable Python Language Support

Required Tools

  • 7z (required for Windows)
    • REASON: Used to extract the prebuilt SourcetrailPythonIndexer which is downloaded automatically during build execution.

Building

  • Run CMake with these additional options:
    -DBUILD_PYTHON_LANGUAGE_PACKAGE=ON
    
  • Build Sourcetrail as described above.

Creating the deployment Package

Windows

Required Tools

  • Visual Studio (required for Windows)

  • Wix 3.11

    • Reason: Used to build the sourcetrail.msi Windows installer.
    • Remarks: Make sure to add <path/to>/WiX Toolset v3.11/bin to your PATH environment variable.
    • Download: https://wixtoolset.org/releases/
  • Wix extension for Visual Studio

  • JRE

    • Reason: Used for indexing the java sample project that ships with the package.
  • WinRAR

    • Reason: Used for creating the final zip files for the installer and the portable package.
    • Remarks: Make sure to add <path/to>/WinRAR to your PATH environment variable.

Building

  • Run ./script/deploy_windows.sh from your Developer Command Prompt for Visual Studio. The script which will generate a 64bit build and packages it into a portable .zip file and a Wix-based Windows installer, each.

macOS

After building, run the bundle_install.sh script within the build directory which will create a Sourcetrail.app bundle and generate a Sourcetrail_<version>.dmg container.

Linux

Run ./setup/Linux/createPackages.sh from the main directory, which creates both a .tar.gz and a .AppImage package in the main directory. Packaging depends on linuxdeployqt.

How to Run the Tests

The automated test suite of Sourcetrail is powered by Catch2. To run the tests, simply execute the Sourcetrail_test binary. Before executing, please make sure to set the working directory to ./bin/test.

License

Sourcetrail is licensed under the GNU General Public License Version 3.

Trademark

The "Sourcetrail" name is a trademark owned by Coati Software and is not included within the assets licensed under the GNU GPLv3.

Comments
  • sourcetrail 2018.4.8 coredumps while indexing

    sourcetrail 2018.4.8 coredumps while indexing

    On this particular project from CDB file, sourcetrail is crashing while indexing at about 10% 385/3519 files. I am using a 8 cores CPU on Centos 7, with 24 GB RAM. When crashing RAM usage is about 20%. In the preferences, I selected only 4 indexing threads (as per #634). But I am using a different computer here anyway. I tried a couple of times, same crash, but sometimes one of the /opt/sourcetrail/sourcetrail_indexer is left running (at 100% CPU), but no Sourcetrail process obviously. I run under gdb here in case it's helpful to see more info (but usually I run /usr/bin/sourcetrai). Regards Pierre

    gdb /opt/sourcetrail/Sourcetrail GNU gdb (GDB) Red Hat Enterprise Linux 7.6.1-110.el7 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-redhat-linux-gnu". For bug reporting instructions, please see: http://www.gnu.org/software/gdb/bugs/... Reading symbols from /opt/sourcetrail/Sourcetrail...(no debugging symbols found)...done. (gdb) run Starting program: /opt/sourcetrail/Sourcetrail [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". Missing separate debuginfo for /opt/sourcetrail/lib/libGL.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/0e/1f1dd8e4e382c1098c3b8f38245ea1cd3b9e23.debug Missing separate debuginfo for /opt/sourcetrail/lib/libpng12.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/0b/a6b675f43abec4fa2ed5ae83da53a2e32842fb.debug Missing separate debuginfo for /opt/sourcetrail/lib/libicui18n.so.42 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/48/8accd4122387506f60edcbb166542e5ad442dc.debug Missing separate debuginfo for /opt/sourcetrail/lib/libicuuc.so.42 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/b3/ce0ad8460678beeac2dc834d4bf8a224b0a2f6.debug Missing separate debuginfo for /opt/sourcetrail/lib/libicudata.so.42 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/fd/2303d66a1e93a997838195547db939e6053d13.debug Missing separate debuginfo for /opt/sourcetrail/lib/libglapi.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/7c/0a19514dfa9d168a7ebf73c39f50cc4ca54607.debug Missing separate debuginfo for /opt/sourcetrail/lib/libselinux.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/b4/576be308ddcf7bc31f7304e4734c3d846d0236.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXext.so.6 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/e2/69a5a1c9f02085d7cd11f8ede0e87f4aa5f265.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXdamage.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/51/ee35d199e8c0bf259950c45de2050dc40576cf.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXfixes.so.3 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/ad/e920a43a1c861ada2331f5f94295a734a143cc.debug Missing separate debuginfo for /opt/sourcetrail/lib/libX11-xcb.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/70/2335fdfb4b7da33abcaaf56eff203741ec1fc8.debug Missing separate debuginfo for /opt/sourcetrail/lib/libX11.so.6 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/d6/aebc746e1dc689279fcf9199891ae0ebfa164a.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb-glx.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/94/ca7c68c4cafa04d56ef1020c9890893c1ddf91.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb-dri2.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/2b/64a800f30d4b49dd1f8cc7c300e8e3ae26bd47.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/91/59e142839b13cceb33f3b7a1a213698d73dbd6.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXxf86vm.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/b3/ef023ffd3370f727c202bea50d39b24b503343.debug Missing separate debuginfo for /opt/sourcetrail/lib/libdrm.so.2 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/00/5fabf2413c8cc8a069045237176a225212226d.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXau.so.6 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/fd/f0b9771f1fb8838fb93541d36a98af8debdfa6.debug ERROR: Please run Sourcetrail via the Sourcetrail.sh script! Missing separate debuginfo for /opt/sourcetrail/lib/libfontconfig.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/0b/ea1004e49708fb048f7cbfe7398b11fd1dad77.debug Missing separate debuginfo for /opt/sourcetrail/lib/libfreetype.so.6 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/41/6bbd53f6831d38ac55c1b17ad383b7183fa41f.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXi.so.6 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/22/9bd368f0923d8101b540aaf63a9ed17bcde107.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb-render.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/2e/0a37599d69d86a7a51561f116738fc5ee74760.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb-xfixes.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/9d/c63e135076b32fc06f7489db37c18d91811aff.debug Missing separate debuginfo for /opt/sourcetrail/lib/libxcb-shape.so.0 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/78/95ac8a4a5b4fae40ebb615aaf3319338097ad2.debug Missing separate debuginfo for /opt/sourcetrail/lib/libXrender.so.1 Try: yum --enablerepo='debug' install /usr/lib/debug/.build-id/24/3f27a4a243f9d926e027f891737ad1c8c21731.debug [New Thread 0x7fffe754f700 (LWP 14163)] xkbcommon: ERROR: failed to add default include path Qt: Failed to create XKB context! Use QT_XKB_CONFIG_ROOT environmental variable to provide an additional search path, add ':' as separator to provide several search paths and/or make sure that XKB configuration data directory contains recent enough contents, to update please see http://cgit.freedesktop.org/xkeyboard-config/ . 16:57:11 | LogManager.cpp:41 setLoggingEnabled() | INFO: Enabled logging for Sourcetrail 64 bit, version 2018.4.8 16:57:11 | SharedMemoryGarbageCollector.cpp:58 run() | INFO: start shared memory garbage collection [New Thread 0x7fffe6af2700 (LWP 14164)] [New Thread 0x7fffe5a9e700 (LWP 14165)] Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number Fontconfig warning: "/etc/fonts/conf.d/65-0-lohit-bengali.conf", line 32: unknown element "langset" Fontconfig warning: "/etc/fonts/conf.d/69-gnu-free-sans.conf", line 24: unknown element "langset" Fontconfig warning: "/etc/fonts/conf.d/69-gnu-free-serif.conf", line 24: unknown element "langset" [New Thread 0x7fffdf9d2700 (LWP 14166)] [New Thread 0x7fffdf180700 (LWP 14167)] [New Thread 0x7fffde92e700 (LWP 14168)] 16:57:11 | INFO: send MessageStatus Starting Sourcetrail 64 bit, version 2018.4.8 16:57:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Starting Sourcetrail 64 bit, version 2018.4.8 16:57:11 | INFO: send MessageStatus Load settings: /home/pierre/.config/sourcetrail/ApplicationSettings.xml 16:57:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Load settings: /home/pierre/.config/sourcetrail/ApplicationSettings.xml 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Source Code Pro 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Fira Sans 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Source Code Pro 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Fira Sans 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Source Code Pro 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Roboto 16:57:11 | utilityQt.cpp:65 loadFontsFromDirectory() | INFO: Loaded FontFamily: Roboto 16:57:11 | INFO: send MessageStatus Enabled console and file logging. 16:57:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Enabled console and file logging. 16:57:11 | INFO: send MessagePingReceived 16:57:11 | INFO: send MessageLoadProject , settingsChanged: false, refreshMode: 0 16:57:11 | INFO: send MessageWindowFocus 16:57:11 | INFO: send MessagePingReceived 16:57:11 | INFO: send MessageEnteredLicense 16:57:11 | QtNewsWidget.cpp:90 updateNews() | INFO: Process news string: [ { "version": 1, "content": "New Slack Channel
    We started a public Slack channel for open discussion of new features and issues.
    <a href="https://join.slack.com/t/sourcetrail/shared_invite/enQtNDc3MjcyOTk5MTc0LTc3NjJiMzI1NDFiOTE2NDZmOWIwMDQzZjA3N2RhOTZlOGMxYmRjOTA1ZGQ3ZDdlNjliZWQ5MDIwOWU1YWZmYzg">Join Now!" } ] 16:57:11 | INFO: send MessageStatus Found valid license key, unlocked application. 16:57:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Found valid license key, unlocked application. 16:57:11 | INFO: send MessageStatus Load settings: /home/pierre/.config/sourcetrail/ApplicationSettings.xml 16:57:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Load settings: /home/pierre/.config/sourcetrail/ApplicationSettings.xml 16:57:15 | INFO: send MessageLoadProject /home2/perforce/r8.1.0/tyler-810.srctrlprj, settingsChanged: false, refreshMode: 0 16:57:15 | INFO: send MessageStatus Loading Project: /home2/perforce/r8.1.0/tyler-810.srctrlprj - loading 16:57:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Loading Project: /home2/perforce/r8.1.0/tyler-810.srctrlprj 16:57:17 | Project.cpp:151 load() | INFO: Discarding temporary indexing data on user's decision 16:57:17 | INFO: send MessageStatus Project could not load any symbols because the index database is empty. Please re-index the project. 16:57:17 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Project could not load any symbols because the index database is empty. Please re-index the project. 16:57:17 | INFO: send MessageRefresh 16:57:21 | INFO: send MessageWindowFocus 16:57:23 | INFO: send MessageWindowFocus 16:57:23 | INFO: send MessagePingReceived 16:57:26 | INFO: send MessageStatus Preparing Indexing - loading 16:57:26 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Preparing Indexing 16:57:26 | INFO: send MessageErrorCountClear 16:57:26 | INFO: send MessageStatus Preparing Indexing: Setting up Indexers - loading 16:57:26 | StatusBarController.cpp:89 setStatus() | INFO: STATUS Preparing Indexing: Setting up Indexers 16:57:26 | INFO: send MessageIndexingStatus 16:58:33 | CxxIndexerCommandProvider.cpp:172 logStats() | INFO: CxxIndexerCommandProvider stats: 16:58:33 | CxxIndexerCommandProvider.cpp:173 logStats() | INFO: indexed path count: 4045 16:58:33 | CxxIndexerCommandProvider.cpp:174 logStats() | INFO: exclude filter count: 103 16:58:33 | CxxIndexerCommandProvider.cpp:175 logStats() | INFO: include filter count: 0 16:58:33 | CxxIndexerCommandProvider.cpp:176 logStats() | INFO: working directory count: 147 16:58:33 | CxxIndexerCommandProvider.cpp:177 logStats() | INFO: compiler flag count: 8271 16:58:33 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "edge_source_node_id_index" 16:58:33 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "edge_target_node_id_index" 16:58:33 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "node_serialized_name_index" 16:58:33 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "source_location_file_node_id_index" 16:58:33 | SqliteDatabaseIndex.cpp:20 createOnDatabase() | INFO: Creating database index "error_all_data_index" 16:58:33 | INFO: send MessageIndexingStarted 16:58:34 | SqliteDatabaseIndex.cpp:20 createOnDatabase() | INFO: Creating database index "file_path_index" 16:58:34 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "occurrence_element_id_index" 16:58:34 | SqliteDatabaseIndex.cpp:35 removeFromDatabase() | INFO: Removing database index "occurrence_source_location_id_index" [New Thread 0x7fffddbe4700 (LWP 14248)] [New Thread 0x7fffdd392700 (LWP 14249)] [New Thread 0x7fffdcb40700 (LWP 14250)] [New Thread 0x7fffcbfff700 (LWP 14251)] 16:58:35 | InterprocessIndexerCommandManager.cpp:38 pushIndexerCommands() | INFO: grow memory - est: 2819310 size: 1048576 free: 1048176 alloc: 1048576 16:58:35 | InterprocessIndexerCommandManager.cpp:42 pushIndexerCommands() | INFO: growing memory succeeded 16:58:35 | InterprocessIndexerCommandManager.cpp:38 pushIndexerCommands() | INFO: grow memory - est: 2819310 size: 2097152 free: 2096752 alloc: 2097152 16:58:35 | InterprocessIndexerCommandManager.cpp:42 pushIndexerCommands() | INFO: growing memory succeeded 16:58:35 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2219456 used: 1974848 used pct: 48 [New Thread 0x7fffcb7ad700 (LWP 14254)] 16:58:35 | INFO: send MessageIndexingStatus Detaching after fork from child process 14255. [New Thread 0x7fffcaf5b700 (LWP 14256)] [New Thread 0x7fffca709700 (LWP 14257)] Detaching after fork from child process 14260. Detaching after fork from child process 14261. [New Thread 0x7fffc9eb7700 (LWP 14262)] Detaching after fork from child process 14263. 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageStatus [4/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/JsonCpp/src/lib_json/json_reader.cpp - [4/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/JsonCpp/src/lib_json/json_value.cpp - [4/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/JsonCpp/src/lib_json/json_writer.cpp - [4/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/directfb/rodfbbitmap.cpp - 16:58:36 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [4/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/JsonCpp/src/lib_json/json_reader.cpp 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageErrorCountUpdate 2/0 - 2 new errors 16:58:36 | INFO: send MessageErrorCountUpdate 4/0 - 2 new errors 16:58:36 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2626448 used: 1567856 used pct: 38 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:36 | INFO: send MessageStatus [8/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/directfb/rodfbgraphics.cpp - [8/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/robitmap.cpp - [8/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/rofontatlas.cpp - [8/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/romatrix2d.cpp - 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [8/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/directfb/rodfbgraphics.cpp 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageErrorCountUpdate 6/0 - 2 new errors 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageErrorCountUpdate 9/0 - 3 new errors 16:58:36 | INFO: send MessageErrorCountUpdate 12/0 - 3 new errors 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageStatus [12/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/textureatlas/maxrectsbinpack.cpp - [12/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBFont/idirectfbfont_dgiff.c - [12/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/alac/codec/ALACDecoder.cpp - [12/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/SimpleJSON/src/JSONValue.cpp - 16:58:36 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [12/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/R2D2/src/textureatlas/maxrectsbinpack.cpp 16:58:36 | INFO: send MessageErrorCountUpdate 15/0 - 3 new errors 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:36 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 3145728 free: 3144928 used: 800 used pct: 1 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageErrorCountUpdate 18/0 - 3 new errors 16:58:36 | INFO: send MessageErrorCountUpdate 21/0 - 3 new errors 16:58:36 | INFO: send MessageErrorCountUpdate 24/0 - 3 new errors 16:58:36 | INFO: send MessageIndexingStatus 16:58:36 | INFO: send MessageStatus [15/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBFont/idirectfbfont_ft2.c - [15/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_bmp.c - [15/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_gif.c - 16:58:36 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [15/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBFont/idirectfbfont_ft2.c 16:58:37 | INFO: send MessageErrorCountUpdate 28/0 - 4 new errors 16:58:37 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:37 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6377792 free: 6376992 used: 800 used pct: 1 16:58:37 | INFO: send MessageIndexingStatus 16:58:37 | INFO: send MessageIndexingStatus 16:58:37 | INFO: send MessageStatus [16/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_jpeg.c 16:58:37 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [16/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_jpeg.c 16:58:37 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2629440 used: 1564864 used pct: 38 16:58:37 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:37 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6434586 free: 6433786 used: 800 used pct: 1 16:58:37 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:37 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5454250 free: 5453450 used: 800 used pct: 1 16:58:37 | INFO: send MessageIndexingStatus 16:58:37 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:37 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:37 | INFO: send MessageIndexingStatus 16:58:37 | INFO: send MessageIndexingStatus 16:58:37 | INFO: send MessageStatus [19/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_png.c - [19/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBVideoProvider/idirectfbvideoprovider_gif.c - [19/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/conf.c - 16:58:37 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [19/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/interfaces/IDirectFBImageProvider/idirectfbimageprovider_png.c 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageStatus [21/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/debug.c - [21/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/interface.c - 16:58:38 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [21/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/debug.c 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageStatus [22/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/log.c 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:38 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [22/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/log.c 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:38 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageStatus [23/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/mem.c 16:58:38 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [23/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/mem.c 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2921264 used: 1273040 used pct: 31 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageStatus [24/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/modules.c 16:58:38 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [24/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/modules.c 16:58:38 | INFO: send MessageIndexingStatus 16:58:38 | INFO: send MessageStatus [27/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/signals.c - [27/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/thread.c - [27/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/stream.c - 16:58:38 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [27/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/signals.c 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageStatus [28/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/trace.c 16:58:39 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [28/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/trace.c 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageStatus [29/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/util.c 16:58:39 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [29/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/direct/util.c 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageStatus [32/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/arena.c - [32/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/call.c - [32/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/fusion.c - 16:58:39 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [32/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/arena.c 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:39 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:39 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageStatus [33/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/hash.c 16:58:39 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [33/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/hash.c 16:58:39 | INFO: send MessageIndexingStatus 16:58:39 | INFO: send MessageStatus [36/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/lock.c - [36/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/object.c - [36/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/property.c - 16:58:39 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [36/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/lock.c 16:58:40 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3018224 used: 1176080 used pct: 29 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageStatus [38/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/reactor.c - [38/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/ref.c - 16:58:40 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [38/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/reactor.c 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageStatus [40/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/shmalloc.c - [40/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/voodoo/manager.c - 16:58:40 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [40/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/fusion/shmalloc.c 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageStatus [42/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/voodoo/server.c - [42/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfb_dispatcher.c - 16:58:40 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [42/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/lib/voodoo/server.c 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:40 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageStatus [43/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbdatabuffer_dispatcher.c 16:58:40 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [43/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbdatabuffer_dispatcher.c 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageIndexingStatus 16:58:40 | INFO: send MessageStatus [45/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbdisplaylayer_dispatcher.c - [45/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbfont_dispatcher.c - 16:58:40 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [45/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbdisplaylayer_dispatcher.c 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | INFO: send MessageStatus [46/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbimageprovider_dispatcher.c 16:58:41 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [46/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbimageprovider_dispatcher.c 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | INFO: send MessageStatus [48/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbinputdevice_dispatcher.c - [48/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbpalette_dispatcher.c - 16:58:41 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [48/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbinputdevice_dispatcher.c 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3009616 used: 1184688 used pct: 29 16:58:41 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 Detaching after fork from child process 14271. 16:58:41 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14273. 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:41 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:41 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | INFO: send MessageIndexingStatus 16:58:41 | INFO: send MessageStatus [49/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbscreen_dispatcher.c 16:58:41 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [49/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbscreen_dispatcher.c 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageStatus [52/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfb_requestor.c - [52/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbsurface_dispatcher.c - [52/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/dispatcher/idirectfbwindow_dispatcher.c - 16:58:42 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [52/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfb_requestor.c 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageStatus [53/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbdatabuffer_requestor.c 16:58:42 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [53/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbdatabuffer_requestor.c 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageStatus [54/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbdisplaylayer_requestor.c 16:58:42 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [54/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbdisplaylayer_requestor.c 16:58:42 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2713616 used: 1480688 used pct: 36 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:42 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 5530716 free: 5529916 used: 800 used pct: 1 16:58:42 | INFO: send MessageIndexingStatus 16:58:42 | INFO: send MessageStatus [55/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbfont_requestor.c 16:58:42 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [55/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbfont_requestor.c 16:58:42 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageStatus [56/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbinputdevice_requestor.c 16:58:43 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [56/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbinputdevice_requestor.c 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageStatus [58/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbpalette_requestor.c - [58/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbscreen_requestor.c - 16:58:43 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [58/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbpalette_requestor.c 16:58:43 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:43 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:43 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:43 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:43 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:43 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 1475264 free: 1474464 used: 800 used pct: 1 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageStatus [59/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbsurface_requestor.c 16:58:43 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [59/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbsurface_requestor.c 16:58:43 | INFO: send MessageIndexingStatus 16:58:43 | INFO: send MessageStatus [62/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbwindow_requestor.c - [62/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreGraphicsState.c - [62/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreDFB.c - 16:58:43 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [62/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/proxy/requestor/idirectfbwindow_requestor.c 16:58:43 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2719040 used: 1475264 used pct: 36 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7804792 free: 7803992 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | INFO: send MessageStatus [64/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreGraphicsStateClient.c - [64/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreGraphicsState_real.c - 16:58:44 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [64/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreGraphicsStateClient.c 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 6797248 free: 6796448 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2521776 used: 1672528 used pct: 40 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | INFO: send MessageStatus [66/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayer.c - [66/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayerContext.c - 16:58:44 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [66/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayer.c 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 3367808 free: 3367008 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:44 | INFO: send MessageStatus [67/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayerContext_real.c 16:58:44 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [67/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayerContext_real.c 16:58:44 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:44 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageStatus [68/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayerRegion.c 16:58:45 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [68/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreLayerRegion.c 16:58:45 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:45 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2524624 used: 1669680 used pct: 40 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageStatus [69/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CorePalette.c 16:58:45 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [69/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CorePalette.c 16:58:45 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:45 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 6797248 free: 6796448 used: 800 used pct: 1 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:45 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6314612 free: 6313812 used: 800 used pct: 1 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageStatus [71/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreScreen.c - [71/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreSurface.c - 16:58:45 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [71/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreScreen.c 16:58:45 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:45 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:45 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageIndexingStatus 16:58:45 | INFO: send MessageStatus [73/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreSurface_real.c - [73/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreWindow.c - 16:58:45 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [73/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreSurface_real.c 16:58:46 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2427376 used: 1766928 used pct: 43 16:58:46 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:46 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6389926 free: 6389126 used: 800 used pct: 1 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageStatus [74/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreWindowStack.c 16:58:46 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [74/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreWindowStack.c 16:58:46 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:46 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 6797248 free: 6796448 used: 800 used pct: 1 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageStatus [75/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreWindow_real.c 16:58:46 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [75/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/CoreWindow_real.c 16:58:46 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:46 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6761802 free: 6761002 used: 800 used pct: 1 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2425888 used: 1768416 used pct: 43 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageStatus [76/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/core.c 16:58:46 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [76/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/core.c 16:58:46 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:46 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:46 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:46 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6389926 free: 6389126 used: 800 used pct: 1 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageIndexingStatus 16:58:46 | INFO: send MessageStatus [78/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/fonts.c - [78/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/gfxcard.c - 16:58:46 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [78/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/fonts.c 16:58:47 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:47 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 6797248 free: 6796448 used: 800 used pct: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageStatus [79/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/input.c 16:58:47 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [79/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/input.c 16:58:47 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2321680 used: 1872624 used pct: 45 16:58:47 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:47 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6888930 free: 6888130 used: 800 used pct: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageStatus [80/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_context.c 16:58:47 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [80/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_context.c 16:58:47 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:47 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageStatus [81/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_control.c 16:58:47 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [81/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_control.c 16:58:47 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6677738 free: 6676938 used: 800 used pct: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2422208 used: 1772096 used pct: 43 16:58:47 | INFO: send MessageIndexingStatus 16:58:47 | INFO: send MessageStatus [82/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_region.c 16:58:47 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [82/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layer_region.c 16:58:47 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:47 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7093198 free: 7092398 used: 800 used pct: 1 16:58:47 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageStatus [83/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layers.c 16:58:48 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [83/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/layers.c 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7838542 free: 7837742 used: 800 used pct: 1 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageStatus [85/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/palette.c - [85/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/prealloc_surface_pool_bridge.c - 16:58:48 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [85/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/palette.c 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6677738 free: 6676938 used: 800 used pct: 1 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2512736 used: 1681568 used pct: 41 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageStatus [86/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/screen.c 16:58:48 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [86/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/screen.c 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7093198 free: 7092398 used: 800 used pct: 1 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | INFO: send MessageStatus [87/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/screens.c 16:58:48 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [87/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/screens.c 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 2210096 free: 2209296 used: 800 used pct: 1 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6677738 free: 6676938 used: 800 used pct: 1 16:58:48 | INFO: send MessageIndexingStatus 16:58:48 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:48 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:48 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageStatus [88/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/shared_secure_surface_pool.c 16:58:49 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [88/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/shared_secure_surface_pool.c 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageStatus [90/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/state.c - [90/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface.c - 16:58:49 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [90/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/state.c 16:58:49 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2507888 used: 1686416 used pct: 41 16:58:49 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:49 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7093198 free: 7092398 used: 800 used pct: 1 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:49 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 4798590 free: 4797790 used: 800 used pct: 1 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:49 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6677738 free: 6676938 used: 800 used pct: 1 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageStatus [91/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_allocation.c 16:58:49 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [91/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_allocation.c 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2503920 used: 1690384 used pct: 41 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageStatus [93/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_buffer.c - [93/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_pool.c - 16:58:49 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [93/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_buffer.c 16:58:49 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:49 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageIndexingStatus 16:58:49 | INFO: send MessageStatus [94/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_pool_bridge.c 16:58:49 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [94/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/surface_pool_bridge.c 16:58:50 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:50 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 6879148 free: 6878348 used: 800 used pct: 1 16:58:50 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:50 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 6677738 free: 6676938 used: 800 used pct: 1 16:58:50 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:50 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7093198 free: 7092398 used: 800 used pct: 1 16:58:50 | INFO: send MessageIndexingStatus 16:58:50 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:50 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:50 | INFO: send MessageIndexingStatus 16:58:50 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2507040 used: 1687264 used pct: 41 16:58:50 | INFO: send MessageIndexingStatus 16:58:50 | INFO: send MessageStatus [95/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/system.c 16:58:50 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [95/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/system.c 16:58:50 | INFO: send MessageIndexingStatus 16:58:50 | INFO: send MessageStatus [98/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/windows.c - [98/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/windowstack.c - [98/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/wm.c - 16:58:50 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [98/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/core/windows.c 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 6879148 free: 6878348 used: 800 used pct: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2306784 used: 1887520 used pct: 46 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | INFO: send MessageStatus [99/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbdisplaylayer.c 16:58:51 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [99/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbdisplaylayer.c 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | INFO: send MessageStatus [100/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbscreen.c 16:58:51 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [100/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbscreen.c 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7093198 free: 7092398 used: 800 used pct: 1 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | INFO: send MessageIndexingStatus 16:58:51 | INFO: send MessageStatus [102/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbsurface.c - [102/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbsurface_layer.c - 16:58:51 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [102/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbsurface.c 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 6946404 free: 6945604 used: 800 used pct: 1 16:58:51 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:51 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:51 | INFO: send MessageIndexingStatus 16:58:52 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2411088 used: 1783216 used pct: 43 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageStatus [104/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/clip.c - [104/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/display/idirectfbsurface_window.c - 16:58:52 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [104/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/clip.c 16:58:52 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:52 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageStatus [105/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/convert.c 16:58:52 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [105/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/convert.c 16:58:52 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:52 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 7760704 free: 7759904 used: 800 used pct: 1 16:58:52 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:52 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageStatus [107/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic.c - [107/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic_stretch_blit.c - 16:58:52 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [107/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic.c 16:58:52 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2410656 used: 1783648 used pct: 43 16:58:52 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:52 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 7045086 free: 7044286 used: 800 used pct: 1 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:52 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageIndexingStatus 16:58:52 | INFO: send MessageStatus [109/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic_texture_triangles.c - [109/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic_util.c - 16:58:52 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [109/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/generic/generic_texture_triangles.c 16:58:53 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:53 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | INFO: send MessageStatus [110/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/util.c 16:58:53 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [110/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/gfx/util.c 16:58:53 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2311376 used: 1882928 used pct: 45 16:58:53 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:53 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 7045086 free: 7044286 used: 800 used pct: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:53 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | INFO: send MessageStatus [112/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/idirectfb.c - [112/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/input/idirectfbinputbuffer.c - 16:58:53 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [112/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/idirectfb.c 16:58:53 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:53 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | INFO: send MessageStatus [113/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/input/idirectfbinputdevice.c 16:58:53 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [113/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/input/idirectfbinputdevice.c 16:58:53 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:53 | INFO: send MessageIndexingStatus 16:58:53 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2405776 used: 1788528 used pct: 43 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageStatus [114/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/DataBuffer.c 16:58:54 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [114/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/DataBuffer.c 16:58:54 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:54 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageStatus [115/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/ImageProvider.c 16:58:54 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [115/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/ImageProvider.c 16:58:54 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:54 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:54 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2324416 used: 1869888 used pct: 45 16:58:54 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageStatus [117/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/idirectfbdatabuffer_streamed.c - [117/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/idirectfbfont.c - 16:58:54 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [117/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/idirectfbdatabuffer_streamed.c 16:58:54 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageIndexingStatus 16:58:54 | INFO: send MessageStatus [118/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/idirectfbvideoprovider.c 16:58:54 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [118/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/media/idirectfbvideoprovider.c 16:58:54 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2162160 used: 2032144 used pct: 49 16:58:55 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:55 | INFO: send MessageStatus [120/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/misc/conf.c - [120/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/misc/gfx_util.c - 16:58:55 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [120/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/misc/conf.c 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7209462 free: 7208662 used: 800 used pct: 1 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageStatus [122/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/misc/util.c - [122/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/windows/idirectfbwindow.c - 16:58:55 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [122/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/src/misc/util.c 16:58:55 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageStatus [123/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbdump.c 16:58:55 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [123/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbdump.c 16:58:55 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:55 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 1998352 used: 2195952 used pct: 53 16:58:55 | INFO: send MessageIndexingStatus 16:58:55 | INFO: send MessageStatus [124/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbfx.c 16:58:55 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [124/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbfx.c 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageStatus [125/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbinfo.c 16:58:56 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [125/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbinfo.c 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageStatus [127/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfblayer.c - [127/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfbscreen.c - 16:58:56 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [127/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/dfblayer.c 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageStatus [128/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/directfb-csource.c 16:58:56 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [128/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/directfb-csource.c 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 1933184 used: 2261120 used pct: 54 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:56 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:56 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageIndexingStatus 16:58:56 | INFO: send MessageStatus [129/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/fusion_bench.c 16:58:56 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [129/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/fusion_bench.c 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageStatus [131/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/mkdfiff.c - [131/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/mkdgiff.c - 16:58:57 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [131/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/tools/mkdfiff.c 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageStatus [132/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/wm/default/default.c 16:58:57 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [132/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-1.4.17/wm/default/default.c 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageStatus [133/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/gfxdrivers/bcmnexus/bcmnexus_gfx.c 16:58:57 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [133/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/gfxdrivers/bcmnexus/bcmnexus_gfx.c 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 7176654 free: 7175854 used: 800 used pct: 1 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2263472 used: 1930832 used pct: 47 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1648 free: 848 used: 800 used pct: 49 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:57 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:57 | INFO: send MessageIndexingStatus 16:58:57 | INFO: send MessageStatus [136/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_init.c - [136/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_nexus_display.c - [136/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_nexus_init.c - 16:58:57 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [136/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_init.c 16:58:57 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:57 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageStatus [140/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_nexus_input.c - [140/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_pool.c - [140/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_layer.c - [140/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus.c - 16:58:58 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [140/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/platform/platform_nexus_input.c 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050482 free: 1049682 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050496 free: 1049696 used: 800 used pct: 1 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageStatus [144/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_screen.c - [144/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/tools/df_brcmTest.c - [144/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_video.c - [144/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_utils.c - 16:58:58 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [144/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/systems/bcmnexus/bcmnexus_screen.c 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 9913592 free: 9912792 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageErrorCountUpdate 29/0 - 1 new errors 16:58:58 | INFO: send MessageErrorCountUpdate 30/0 - 1 new errors 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageStatus [148/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/tools/df_screen_encoder.c - [148/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/tools/df_window_prealloc.c - [148/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/tools/playback_dfb.c - [148/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftbbox.c - 16:58:58 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [148/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/directfb/src/DirectFB-Broadcom/tools/df_screen_encoder.c 16:58:58 | INFO: send MessageErrorCountUpdate 31/0 - 1 new errors 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 1616 free: 816 used: 800 used pct: 50 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050496 free: 1049696 used: 800 used pct: 1 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:58 | INFO: send MessageIndexingStatus 16:58:58 | INFO: send MessageErrorCountUpdate 33/0 - 2 new errors 16:58:58 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:58 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:58 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageErrorCountUpdate 34/0 - 1 new errors 16:58:59 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3311568 used: 882736 used pct: 22 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [149/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftbitmap.c 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [149/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftbitmap.c 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [152/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftglyph.c - [152/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftlcdfil.c - [152/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftstroke.c - 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [152/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftglyph.c 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2861412 free: 2860612 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 2925362 free: 2924562 used: 800 used pct: 1 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 8373922 free: 8373122 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [153/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftsystem.c 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [153/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/base/ftsystem.c 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2861412 free: 2860612 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [155/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/bzip2/ftbzip2.c - [155/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/gzip/ftgzip.c - 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [155/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/bzip2/ftbzip2.c 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [157/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/lzw/ftlzw.c - [157/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/psnames/psmodule.c - 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [157/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/lzw/ftlzw.c 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:58:59 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:58:59 | INFO: send MessageIndexingStatus 16:58:59 | INFO: send MessageStatus [158/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/winfonts/winfnt.c 16:58:59 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [158/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/freetype-2.4.12/src/winfonts/winfnt.c 16:58:59 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:58:59 | INFO: send MessageIndexingStatus 16:59:00 | INFO: send MessageErrorCountUpdate 35/0 - 1 new errors 16:59:00 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:00 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:00 | INFO: send MessageIndexingStatus 16:59:00 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:00 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:00 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:00 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:00 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:00 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:00 | INFO: send MessageIndexingStatus 16:59:00 | INFO: send MessageStatus [160/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/cjpeg.c - [160/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/djpeg.c - 16:59:00 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [160/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/cjpeg.c 16:59:00 | INFO: send MessageIndexingStatus 16:59:00 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2926224 used: 1268080 used pct: 31 16:59:00 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14293. 16:59:00 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 16:59:00 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14294. Detaching after fork from child process 14295. 16:59:00 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14299. 16:59:00 | INFO: send MessageErrorCountUpdate 37/0 - 2 new errors 16:59:00 | INFO: send MessageErrorCountUpdate 38/0 - 1 new errors 16:59:01 | INFO: send MessageErrorCountUpdate 40/0 - 2 new errors 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageStatus [164/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcarith.c - [164/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jccoefct.c - [164/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jccolor.c - [164/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcdctmgr.c - 16:59:01 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [164/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcarith.c 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageErrorCountUpdate 45/0 - 5 new errors 16:59:01 | INFO: send MessageErrorCountUpdate 46/0 - 1 new errors 16:59:01 | INFO: send MessageErrorCountUpdate 47/0 - 1 new errors 16:59:01 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3028560 used: 1165744 used pct: 28 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageStatus [168/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jchuff.c - [168/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcmarker.c - [168/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcmaster.c - [168/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcparam.c - 16:59:01 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [168/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jchuff.c 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:01 | INFO: send MessageErrorCountUpdate 48/0 - 1 new errors 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageErrorCountUpdate 49/0 - 1 new errors 16:59:01 | INFO: send MessageErrorCountUpdate 50/0 - 1 new errors 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:01 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:01 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:01 | INFO: send MessageErrorCountUpdate 51/0 - 1 new errors 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageStatus [172/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcphuff.c - [172/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcprepct.c - [172/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcsample.c - [172/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jctrans.c - 16:59:01 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [172/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jcphuff.c 16:59:01 | INFO: send MessageIndexingStatus 16:59:01 | INFO: send MessageErrorCountUpdate 52/0 - 1 new errors 16:59:01 | INFO: send MessageErrorCountUpdate 53/0 - 1 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 54/0 - 1 new errors 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:02 | INFO: send MessageIndexingStatus 16:59:02 | INFO: send MessageStatus [176/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdapimin.c - [176/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdarith.c - [176/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdcoefct.c - [176/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdatasrc.c - 16:59:02 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [176/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdapimin.c 16:59:02 | INFO: send MessageIndexingStatus 16:59:02 | INFO: send MessageErrorCountUpdate 55/0 - 1 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 57/0 - 2 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 58/0 - 1 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 59/0 - 1 new errors 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:02 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:02 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:02 | INFO: send MessageIndexingStatus 16:59:02 | INFO: send MessageStatus [180/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdcolor.c - [180/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdinput.c - [180/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdhuff.c - [180/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jddctmgr.c - 16:59:02 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [180/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdcolor.c 16:59:02 | INFO: send MessageIndexingStatus 16:59:02 | INFO: send MessageErrorCountUpdate 61/0 - 2 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 62/0 - 1 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 63/0 - 1 new errors 16:59:02 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14302. 16:59:02 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 Detaching after fork from child process 14305. 16:59:02 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14306. 16:59:02 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14307. 16:59:02 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3018880 used: 1175424 used pct: 29 16:59:02 | INFO: send MessageErrorCountUpdate 64/0 - 1 new errors 16:59:02 | INFO: send MessageErrorCountUpdate 65/0 - 1 new errors 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | INFO: send MessageStatus [184/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdmainct.c - [184/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdmerge.c - [184/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdmaster.c - [184/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdmarker.c - 16:59:03 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [184/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdmainct.c 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | INFO: send MessageErrorCountUpdate 66/0 - 1 new errors 16:59:03 | INFO: send MessageErrorCountUpdate 67/0 - 1 new errors 16:59:03 | INFO: send MessageErrorCountUpdate 68/0 - 1 new errors 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | INFO: send MessageStatus [188/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdphuff.c - [188/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jfdctint.c - [188/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdpostct.c - [188/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdsample.c - 16:59:03 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [188/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jdphuff.c 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | INFO: send MessageErrorCountUpdate 69/0 - 1 new errors 16:59:03 | INFO: send MessageErrorCountUpdate 70/0 - 1 new errors 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | INFO: send MessageStatus [192/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jidctfst.c - [192/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jidctint.c - [192/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jidctred.c - [192/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jmemmgr.c - 16:59:03 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [192/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jidctfst.c 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14312. 16:59:03 | INFO: send MessageErrorCountUpdate 71/0 - 1 new errors 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:03 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 Detaching after fork from child process 14315. 16:59:03 | INFO: send MessageIndexingStatus 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14316. 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14318. Detaching after fork from child process 14320. 16:59:03 | INFO: send MessageErrorCountUpdate 72/0 - 1 new errors 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14321. 16:59:03 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14325. 16:59:03 | INFO: send MessageErrorCountUpdate 73/0 - 1 new errors 16:59:04 | INFO: send MessageErrorCountUpdate 74/0 - 1 new errors 16:59:04 | INFO: send MessageErrorCountUpdate 75/0 - 1 new errors 16:59:04 | INFO: send MessageErrorCountUpdate 77/0 - 2 new errors 16:59:04 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3025456 used: 1168848 used pct: 28 16:59:04 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14328. 16:59:04 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 Detaching after fork from child process 14330. 16:59:04 | INFO: send MessageIndexingStatus 16:59:04 | INFO: send MessageStatus [193/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jpegtran.c 16:59:04 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [193/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jpegtran.c 16:59:04 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14331. 16:59:04 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14334. 16:59:04 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:04 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:04 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageErrorCountUpdate 78/0 - 1 new errors 16:59:05 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2738384 used: 1455920 used pct: 35 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:05 | INFO: send MessageStatus [197/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jquant1.c - [197/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdjpgcom.c - [197/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdbmp.c - [197/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jquant2.c - 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:05 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [197/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/jquant1.c 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageErrorCountUpdate 79/0 - 1 new errors 16:59:05 | INFO: send MessageErrorCountUpdate 80/0 - 1 new errors 16:59:05 | INFO: send MessageErrorCountUpdate 81/0 - 1 new errors 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageStatus [201/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdppm.c - [201/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdswitch.c - [201/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdtarga.c - [201/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/transupp.c - 16:59:05 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [201/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/rdppm.c 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageErrorCountUpdate 82/0 - 1 new errors 16:59:05 | INFO: send MessageErrorCountUpdate 83/0 - 1 new errors 16:59:05 | INFO: send MessageErrorCountUpdate 84/0 - 1 new errors 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1211664 free: 1210864 used: 800 used pct: 1 16:59:05 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:05 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageStatus [205/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/wrbmp.c - [205/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/png.c - [205/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/wrgif.c - [205/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/wrjpgcom.c - 16:59:05 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [205/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libjpeg-turbo-1.4.1/wrbmp.c 16:59:05 | INFO: send MessageIndexingStatus 16:59:05 | INFO: send MessageErrorCountUpdate 85/0 - 1 new errors 16:59:06 | INFO: send MessageErrorCountUpdate 86/0 - 1 new errors 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageErrorCountUpdate 87/0 - 1 new errors 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageStatus [208/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngerror.c - [208/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngmem.c - [208/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngget.c - 16:59:06 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [208/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngerror.c 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageStatus [209/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngpread.c 16:59:06 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [209/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngpread.c 16:59:06 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3027952 used: 1166352 used pct: 28 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2904810 free: 2904010 used: 800 used pct: 1 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 2860334 free: 2859534 used: 800 used pct: 1 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageStatus [212/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngread.c - [212/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngrutil.c - [212/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngrtran.c - 16:59:06 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [212/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngread.c 16:59:06 | INFO: send MessageIndexingStatus 16:59:06 | INFO: send MessageStatus [213/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngset.c 16:59:06 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [213/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngset.c 16:59:06 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:06 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:06 | INFO: send MessageIndexingStatus 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2931648 free: 2930848 used: 800 used pct: 1 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageStatus [214/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngtrans.c 16:59:07 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [214/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngtrans.c 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageStatus [217/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngwrite.c - [217/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngwtran.c - [217/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngwutil.c - 16:59:07 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [217/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/libpng-1.4.11/pngwrite.c 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageStatus [218/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/crc32.c 16:59:07 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [218/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/crc32.c 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3049040 used: 1145264 used pct: 28 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | INFO: send MessageStatus [221/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/deflate.c - [221/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/gzlib.c - [221/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/gzread.c - 16:59:07 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [221/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/deflate.c 16:59:07 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14346. 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:07 | INFO: send MessageIndexingStatus 16:59:07 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:07 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | INFO: send MessageStatus [225/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/inflate.c - [225/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/gzwrite.c - [225/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/infback.c - [225/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/inffast.c - 16:59:08 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [225/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/inflate.c 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | INFO: send MessageErrorCountUpdate 88/0 - 1 new errors 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | INFO: send MessageStatus [229/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/inftrees.c - [229/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/test/example.c - [229/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/test/minigzip.c - [229/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/trees.c - 16:59:08 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [229/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/AppLibs/opensource/zlib-1.2.8/inftrees.c 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 7409196 free: 7408396 used: 800 used pct: 1 16:59:08 | INFO: send MessageIndexingStatus 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:08 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:08 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:08 | INFO: send MessageIndexingStatus 16:59:09 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:09 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:09 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:09 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:09 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:09 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 1552 free: 752 used: 800 used pct: 52 16:59:09 | INFO: send MessageIndexingStatus 16:59:09 | INFO: send MessageStatus [232/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_parser.c - [232/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_probe.c - [232/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_player.c - 16:59:09 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [232/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_parser.c 16:59:09 | INFO: send MessageIndexingStatus 16:59:09 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2631168 used: 1563136 used pct: 38 16:59:09 | INFO: send MessageErrorCountUpdate 89/0 - 1 new errors 16:59:09 | INFO: send MessageErrorCountUpdate 90/0 - 1 new errors 16:59:09 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14350. 16:59:09 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 0 Detaching after fork from child process 14352. 16:59:09 | INFO: send MessageErrorCountUpdate 92/0 - 2 new errors 16:59:09 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14353. 16:59:09 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14357. 16:59:10 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2270752 used: 1923552 used pct: 46 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageStatus [234/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_stream.c - [234/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_util.c - 16:59:10 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [234/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/asf/basf_stream.c 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 1050378 free: 1049578 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageStatus [236/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_parser.c - [236/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_player.c - 16:59:10 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [236/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_parser.c 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageErrorCountUpdate 93/0 - 1 new errors 16:59:10 | INFO: send MessageErrorCountUpdate 94/0 - 1 new errors 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageStatus [240/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_player_custom.c - [240/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_util.c - [240/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_stream.c - [240/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_probe.c - 16:59:10 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [240/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/avi/bavi_player_custom.c 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 1 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_1_a0ffbe50-d8 - size: 1050380 free: 1049580 used: 800 used pct: 1 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageErrorCountUpdate 95/0 - 1 new errors 16:59:10 | INFO: send MessageErrorCountUpdate 96/0 - 1 new errors 16:59:10 | INFO: send MessageErrorCountUpdate 97/0 - 1 new errors 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:10 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:10 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageStatus [244/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/src/bcmindexer.c - [244/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/src/bcmplayer_svc.c - [244/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/src/bcmplayer.c - [244/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/src/bcmindexer_svc.c - 16:59:10 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [244/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/src/bcmindexer.c 16:59:10 | INFO: send MessageIndexingStatus 16:59:10 | INFO: send MessageErrorCountUpdate 98/0 - 1 new errors 16:59:10 | INFO: send MessageErrorCountUpdate 99/0 - 1 new errors 16:59:11 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 1 returned with 11 Detaching after fork from child process 14362. 16:59:11 | INFO: send MessageErrorCountUpdate 100/0 - 1 new errors 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageStatus [247/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/utils/b_playback.c - [247/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bfile/bfile_buffer.c - [247/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bfile/bfile_cache.c - 16:59:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [247/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/bcmplayer/utils/b_playback.c 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageErrorCountUpdate 101/0 - 1 new errors 16:59:11 | INFO: send MessageErrorCountUpdate 103/0 - 2 new errors 16:59:11 | INFO: send MessageErrorCountUpdate 104/0 - 1 new errors 16:59:11 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3102640 used: 1091664 used pct: 27 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageStatus [250/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/baac_loas_probe.c - [250/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bac3_probe.c - [250/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/baiff_filter.c - 16:59:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [250/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/baac_loas_probe.c 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageErrorCountUpdate 106/0 - 2 new errors 16:59:11 | INFO: send MessageErrorCountUpdate 107/0 - 1 new errors 16:59:11 | INFO: send MessageErrorCountUpdate 108/0 - 1 new errors 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageStatus [253/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bavc_video_probe.c - [253/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bflac_parser.c - [253/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bflac_util.c - 16:59:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [253/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bavc_video_probe.c 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageErrorCountUpdate 109/0 - 1 new errors 16:59:11 | INFO: send MessageErrorCountUpdate 110/0 - 1 new errors 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:11 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:11 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageStatus [256/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_cdxa.c - [256/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_filter.c - [256/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_pes.c - 16:59:11 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [256/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_cdxa.c 16:59:11 | INFO: send MessageIndexingStatus 16:59:11 | INFO: send MessageErrorCountUpdate 111/0 - 1 new errors 16:59:12 | INFO: send MessageErrorCountUpdate 112/0 - 1 new errors 16:59:12 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:12 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:12 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:12 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:12 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:12 | INFO: send MessageErrorCountUpdate 113/0 - 1 new errors 16:59:12 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:12 | INFO: send MessageIndexingStatus 16:59:12 | INFO: send MessageStatus [259/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player.c - [259/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player_generic.c - [259/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player_es.c - 16:59:12 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [259/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player.c 16:59:12 | INFO: send MessageIndexingStatus 16:59:12 | INFO: send MessageErrorCountUpdate 114/0 - 1 new errors 16:59:12 | INFO: send MessageErrorCountUpdate 115/0 - 1 new errors 16:59:12 | INFO: send MessageErrorCountUpdate 116/0 - 1 new errors 16:59:12 | INFO: send MessageErrorCountUpdate 118/0 - 2 new errors 16:59:12 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2497072 used: 1697232 used pct: 41 16:59:12 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14367. 16:59:12 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14369. 16:59:12 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14371. 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageStatus [261/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player_nav.c - [261/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_probe.c - 16:59:13 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [261/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_player_nav.c 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageErrorCountUpdate 119/0 - 1 new errors 16:59:13 | INFO: send MessageErrorCountUpdate 120/0 - 1 new errors 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageStatus [264/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_util.c - [264/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_file_parser.c - [264/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_parser.c - 16:59:13 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [264/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmedia_util.c 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageErrorCountUpdate 121/0 - 1 new errors 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageStatus [267/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_player.c - [267/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_probe.c - [267/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_util.c - 16:59:13 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [267/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmkv_player.c 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageErrorCountUpdate 122/0 - 1 new errors 16:59:13 | INFO: send MessageErrorCountUpdate 123/0 - 1 new errors 16:59:13 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2860512 used: 1333792 used pct: 32 16:59:13 | INFO: send MessageErrorCountUpdate 124/0 - 1 new errors 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:13 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:13 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageStatus [270/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp3_probe.c - [270/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_fragment_demux.c - [270/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_parser.c - 16:59:13 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [270/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp3_probe.c 16:59:13 | INFO: send MessageIndexingStatus 16:59:13 | INFO: send MessageErrorCountUpdate 126/0 - 2 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 127/0 - 1 new errors 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageStatus [273/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_player.c - [273/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_probe.c - [273/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_track.c - 16:59:14 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [273/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_player.c 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageErrorCountUpdate 129/0 - 2 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 130/0 - 1 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 131/0 - 1 new errors 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageStatus [276/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_util.c - [276/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg1_parser.c - [276/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg1_probe.c - 16:59:14 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [276/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmp4_util.c 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageErrorCountUpdate 132/0 - 1 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 133/0 - 1 new errors 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageStatus [279/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2pes_parser.c - [279/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2pes_player.c - [279/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2pes_probe.c - 16:59:14 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [279/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2pes_parser.c 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageErrorCountUpdate 134/0 - 1 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 135/0 - 1 new errors 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:14 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:14 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageStatus [281/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_player.c - [281/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_parser.c - 16:59:14 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [281/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_player.c 16:59:14 | INFO: send MessageIndexingStatus 16:59:14 | INFO: send MessageErrorCountUpdate 136/0 - 1 new errors 16:59:14 | INFO: send MessageErrorCountUpdate 138/0 - 2 new errors 16:59:14 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14375. 16:59:14 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14377. 16:59:15 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14379. 16:59:15 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2739296 used: 1455008 used pct: 35 16:59:15 | INFO: send MessageErrorCountUpdate 139/0 - 1 new errors 16:59:15 | INFO: send MessageErrorCountUpdate 140/0 - 1 new errors 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageStatus [283/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_probe.c - [283/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_psi_probe.c - 16:59:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [283/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg2ts_probe.c 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageErrorCountUpdate 141/0 - 1 new errors 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageStatus [285/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg_video_probe.c - [285/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg4_util.c - 16:59:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [285/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bmpeg_video_probe.c 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageErrorCountUpdate 142/0 - 1 new errors 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageStatus [287/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bogg_parser.c - [287/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/briff_parser.c - 16:59:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [287/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bogg_parser.c 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageErrorCountUpdate 143/0 - 1 new errors 16:59:15 | INFO: send MessageErrorCountUpdate 144/0 - 1 new errors 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageStatus [289/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/btime_indexer.c - [289/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bwav_filter.c - 16:59:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [289/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/btime_indexer.c 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageErrorCountUpdate 145/0 - 1 new errors 16:59:15 | INFO: send MessageErrorCountUpdate 146/0 - 1 new errors 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:15 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:15 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | INFO: send MessageStatus [291/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bwav_player.c - [291/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bwav_probe.c - 16:59:15 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [291/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/bwav_player.c 16:59:15 | INFO: send MessageIndexingStatus 16:59:15 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14382. 16:59:15 | INFO: send MessageErrorCountUpdate 147/0 - 1 new errors 16:59:16 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:16 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:16 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:16 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:16 | INFO: send MessageIndexingStatus 16:59:16 | INFO: send MessageStatus [293/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/flv/bflv_parser.c - [293/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/flv/bflv_probe.c - 16:59:16 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [293/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/media/flv/bflv_parser.c 16:59:16 | INFO: send MessageIndexingStatus 16:59:16 | INFO: send MessageErrorCountUpdate 148/0 - 1 new errors 16:59:16 | INFO: send MessageErrorCountUpdate 149/0 - 1 new errors 16:59:16 | INFO: send MessageErrorCountUpdate 150/0 - 1 new errors 16:59:16 | INFO: send MessageErrorCountUpdate 151/0 - 1 new errors 16:59:16 | INFO: send MessageErrorCountUpdate 152/0 - 1 new errors 16:59:16 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2919104 used: 1275200 used pct: 31 16:59:16 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14385. 16:59:17 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14386. 16:59:17 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14389. 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageStatus [296/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/utils/barena.c - [296/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/utils/bioatom.c - [296/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/utils/bsink_playback.c - 16:59:17 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [296/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/lib/utils/barena.c 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageErrorCountUpdate 153/0 - 1 new errors 16:59:17 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2777072 used: 1417232 used pct: 34 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:17 | INFO: send MessageErrorCountUpdate 154/0 - 1 new errors 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageStatus [299/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/linux/driver/usermode/bcm_driver.c - [299/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/BSEAV/app/splash/splashrun/splash_script_load.c - [299/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/bcm97358/src/bcm97358_devs.c - 16:59:17 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [299/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/BSEAV/linux/driver/usermode/bcm_driver.c 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageErrorCountUpdate 155/0 - 1 new errors 16:59:17 | INFO: send MessageErrorCountUpdate 156/0 - 1 new errors 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageStatus [302/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/disasm.c - [302/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/exception.S - [302/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/exchandler.c - 16:59:17 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [302/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/disasm.c 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:17 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:17 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:17 | INFO: send MessageIndexingStatus 16:59:17 | INFO: send MessageErrorCountUpdate 157/0 - 1 new errors 16:59:17 | INFO: send MessageErrorCountUpdate 158/0 - 1 new errors 16:59:18 | INFO: send MessageErrorCountUpdate 159/0 - 1 new errors 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageStatus [305/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/init_cfe.S - [305/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_genet.c - [305/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_bcmethsw.c - 16:59:18 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [305/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/arch/src/init_cfe.S 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageErrorCountUpdate 161/0 - 2 new errors 16:59:18 | INFO: send MessageErrorCountUpdate 162/0 - 1 new errors 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageStatus [308/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_nandflash.c - [308/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_newflash.c - [308/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_spiflash.c - 16:59:18 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [308/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/dev/dev_nandflash.c 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageErrorCountUpdate 163/0 - 1 new errors 16:59:18 | INFO: send MessageErrorCountUpdate 164/0 - 1 new errors 16:59:18 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3080736 used: 1113568 used pct: 27 16:59:18 | INFO: send MessageErrorCountUpdate 165/0 - 1 new errors 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageStatus [311/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/aes.c - [311/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/lib_malloc.c - [311/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/lib_arena.c - 16:59:18 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [311/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/aes.c 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageErrorCountUpdate 166/0 - 1 new errors 16:59:18 | INFO: send MessageErrorCountUpdate 167/0 - 1 new errors 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageStatus [314/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/lib_printf.c - [314/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_autoboot.c - [314/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/boot_roku.c - 16:59:18 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [314/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/lib/lib_printf.c 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageErrorCountUpdate 168/0 - 1 new errors 16:59:18 | INFO: send MessageErrorCountUpdate 170/0 - 2 new errors 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:18 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:18 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:18 | INFO: send MessageIndexingStatus 16:59:18 | INFO: send MessageStatus [317/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_boot.c - [317/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_console.c - [317/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_fatfs.c - 16:59:18 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [317/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_boot.c 16:59:18 | INFO: send MessageIndexingStatus 16:59:19 | INFO: send MessageErrorCountUpdate 171/0 - 1 new errors 16:59:19 | INFO: send MessageErrorCountUpdate 173/0 - 2 new errors 16:59:19 | INFO: send MessageErrorCountUpdate 174/0 - 1 new errors 16:59:19 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:19 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 3691408 free: 3690608 used: 800 used pct: 1 16:59:19 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:19 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 4201038 free: 4200238 used: 800 used pct: 1 16:59:19 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:19 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:19 | INFO: send MessageIndexingStatus 16:59:19 | INFO: send MessageStatus [320/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_filesys.c - [320/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_iocb_dispatch.c - [320/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_ldr_elf.c - 16:59:19 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [320/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_filesys.c 16:59:19 | INFO: send MessageIndexingStatus 16:59:19 | INFO: send MessageErrorCountUpdate 175/0 - 1 new errors 16:59:19 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:19 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1552 free: 752 used: 800 used pct: 52 16:59:19 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:19 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1552 free: 752 used: 800 used pct: 52 16:59:19 | INFO: send MessageIndexingStatus 16:59:19 | INFO: send MessageStatus [322/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_main.c - [322/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_ldr_srec.c - 16:59:19 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [322/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_main.c 16:59:19 | INFO: send MessageIndexingStatus 16:59:19 | INFO: send MessageErrorCountUpdate 176/0 - 1 new errors 16:59:19 | INFO: send MessageErrorCountUpdate 177/0 - 1 new errors 16:59:19 | INFO: send MessageErrorCountUpdate 178/0 - 1 new errors 16:59:19 | INFO: send MessageErrorCountUpdate 179/0 - 1 new errors 16:59:19 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2979808 used: 1214496 used pct: 29 16:59:19 | INFO: send MessageErrorCountUpdate 180/0 - 1 new errors 16:59:20 | INFO: send MessageErrorCountUpdate 181/0 - 1 new errors 16:59:20 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14393. 16:59:20 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14394. 16:59:20 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14397. 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageStatus [325/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_xreq.c - [325/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/env_subr.c - [325/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_zlibfs.c - 16:59:20 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [325/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/cfe_xreq.c 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageErrorCountUpdate 182/0 - 1 new errors 16:59:20 | INFO: send MessageErrorCountUpdate 183/0 - 1 new errors 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageStatus [328/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_arp.c - [328/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/main/rsa.c - [328/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_api.c - 16:59:20 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [328/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_arp.c 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageErrorCountUpdate 184/0 - 1 new errors 16:59:20 | INFO: send MessageErrorCountUpdate 185/0 - 1 new errors 16:59:20 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 3082208 used: 1112096 used pct: 27 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageStatus [331/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_dhcp.c - [331/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_ether.c - [331/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_ip.c - 16:59:20 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [331/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_dhcp.c 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:20 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:20 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:20 | INFO: send MessageIndexingStatus 16:59:20 | INFO: send MessageErrorCountUpdate 186/0 - 1 new errors 16:59:20 | INFO: send MessageErrorCountUpdate 187/0 - 1 new errors 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageStatus [334/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_tcp.c - [334/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_udp.c - [334/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_tftp.c - 16:59:21 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [334/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/net/net_tcp.c 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageErrorCountUpdate 188/0 - 1 new errors 16:59:21 | INFO: send MessageErrorCountUpdate 189/0 - 1 new errors 16:59:21 | INFO: send MessageErrorCountUpdate 190/0 - 1 new errors 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageStatus [337/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_examcmds.c - [337/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_flash.c - [337/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_command.c - 16:59:21 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [337/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_examcmds.c 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageErrorCountUpdate 191/0 - 1 new errors 16:59:21 | INFO: send MessageErrorCountUpdate 193/0 - 2 new errors 16:59:21 | INFO: send MessageErrorCountUpdate 194/0 - 1 new errors 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050384 free: 1049584 used: 800 used pct: 1 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageStatus [340/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_loadcmds.c - [340/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_netcmds.c - [340/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_misccmds.c - 16:59:21 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [340/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_loadcmds.c 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageErrorCountUpdate 196/0 - 2 new errors 16:59:21 | INFO: send MessageErrorCountUpdate 197/0 - 1 new errors 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageStatus [342/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_tcpcmds.c - [342/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/ohci.c - 16:59:21 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [342/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/ui/ui_tcpcmds.c 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageErrorCountUpdate 198/0 - 1 new errors 16:59:21 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:21 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:21 | INFO: send MessageIndexingStatus 16:59:21 | INFO: send MessageErrorCountUpdate 199/0 - 1 new errors 16:59:22 | INFO: send MessageErrorCountUpdate 200/0 - 1 new errors 16:59:22 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14401. 16:59:22 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14402. 16:59:22 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14404. 16:59:22 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2979680 used: 1214624 used pct: 29 16:59:22 | INFO: send MessageErrorCountUpdate 201/0 - 1 new errors 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:22 | INFO: send MessageStatus [345/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbd.c - [345/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbdebug.c - [345/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbeth.c - 16:59:22 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [345/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbd.c 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050384 free: 1049584 used: 800 used pct: 1 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | INFO: send MessageErrorCountUpdate 202/0 - 1 new errors 16:59:22 | INFO: send MessageErrorCountUpdate 203/0 - 1 new errors 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050384 free: 1049584 used: 800 used pct: 1 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | INFO: send MessageStatus [348/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbhid.c - [348/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbhub.c - [348/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbmain.c - 16:59:22 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [348/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbhid.c 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | INFO: send MessageErrorCountUpdate 204/0 - 1 new errors 16:59:22 | INFO: send MessageErrorCountUpdate 205/0 - 1 new errors 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | INFO: send MessageStatus [351/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbmass.c - [351/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbserial.c - [351/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/zlib/infblock.c - 16:59:22 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [351/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/usb/usbmass.c 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050384 free: 1049584 used: 800 used pct: 1 16:59:22 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:22 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:22 | INFO: send MessageErrorCountUpdate 207/0 - 2 new errors 16:59:22 | INFO: send MessageIndexingStatus 16:59:22 | INFO: send MessageErrorCountUpdate 208/0 - 1 new errors 16:59:23 | INFO: send MessageErrorCountUpdate 209/0 - 1 new errors 16:59:23 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14407. 16:59:23 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:23 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:23 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:23 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:23 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:23 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050382 free: 1049582 used: 800 used pct: 1 16:59:23 | INFO: send MessageIndexingStatus 16:59:23 | INFO: send MessageStatus [354/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/zlib/inftrees.c - [354/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/cache_lib.s - [354/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/Shmoo/7358/shmoo_lib/src/set_memc_client_prio.s - 16:59:23 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [354/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/CFE/cfe/zlib/inftrees.c 16:59:23 | INFO: send MessageIndexingStatus 16:59:23 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14410. 16:59:23 | INFO: send MessageErrorCountUpdate 210/0 - 1 new errors 16:59:23 | INFO: send MessageErrorCountUpdate 211/0 - 1 new errors 16:59:23 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2960624 used: 1233680 used pct: 30 16:59:23 | INFO: send MessageErrorCountUpdate 212/0 - 1 new errors 16:59:23 | INFO: send MessageErrorCountUpdate 213/0 - 1 new errors 16:59:24 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14412. 16:59:24 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14414. 16:59:24 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14416. 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageStatus [356/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/cache_lib_fsbl.s - [356/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/decrypt_ssbl.c - 16:59:24 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [356/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/cache_lib_fsbl.s 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageErrorCountUpdate 214/0 - 1 new errors 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:24 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2392768 used: 1801536 used pct: 43 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageStatus [357/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/new_boot.c 16:59:24 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [357/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/new_boot.c 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageErrorCountUpdate 215/0 - 1 new errors 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageStatus [359/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/reset.s - [359/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/uart.s - 16:59:24 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [359/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/cfe/rockford/bsp/bcm97358/no-os/src/sde/reset.s 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageErrorCountUpdate 216/0 - 1 new errors 16:59:24 | INFO: send MessageErrorCountUpdate 217/0 - 1 new errors 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageStatus [362/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/7358/bchp_7358.c - [362/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/7358/bchp_pwr_resources.c - [362/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/7358/bchp_pwr_impl.c - 16:59:24 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [362/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/7358/bchp_7358.c 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageErrorCountUpdate 218/0 - 1 new errors 16:59:24 | INFO: send MessageErrorCountUpdate 219/0 - 1 new errors 16:59:24 | INFO: send MessageIndexingStatus 16:59:24 | INFO: send MessageStatus [365/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/common/bchp_avs.c - [365/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dbg/bdbg.c - [365/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/common/bchp_pwr.c - 16:59:24 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [365/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/chp/src/common/bchp_avs.c 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:24 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:24 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageErrorCountUpdate 220/0 - 1 new errors 16:59:25 | INFO: send MessageErrorCountUpdate 221/0 - 1 new errors 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageStatus [368/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dbg/bdbg_fifo.c - [368/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/bdsp.c - [368/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/bdsp_audio_task.c - 16:59:25 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [368/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dbg/bdbg_fifo.c 16:59:25 | INFO: send MessageErrorCountUpdate 222/0 - 1 new errors 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageErrorCountUpdate 223/0 - 1 new errors 16:59:25 | INFO: send MessageErrorCountUpdate 224/0 - 1 new errors 16:59:25 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2866864 used: 1327440 used pct: 32 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageStatus [369/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga.c 16:59:25 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [369/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga.c 16:59:25 | INFO: send MessageErrorCountUpdate 225/0 - 1 new errors 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050440 free: 1049640 used: 800 used pct: 1 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageStatus [371/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_cit_priv.c - [371/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_fw_priv.c - 16:59:25 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [371/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_cit_priv.c 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageErrorCountUpdate 227/0 - 2 new errors 16:59:25 | INFO: send MessageErrorCountUpdate 228/0 - 1 new errors 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:25 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:25 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050452 free: 1049652 used: 800 used pct: 1 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageStatus [374/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_fw_settings.c - [374/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_fwdownload_priv.c - [374/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_fwinterface_priv.c - 16:59:25 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [374/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_fw_settings.c 16:59:25 | INFO: send MessageIndexingStatus 16:59:25 | INFO: send MessageErrorCountUpdate 229/0 - 1 new errors 16:59:25 | INFO: send MessageErrorCountUpdate 230/0 - 1 new errors 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050452 free: 1049652 used: 800 used pct: 1 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050456 free: 1049656 used: 800 used pct: 1 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageStatus [377/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_int_priv.c - [377/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_mm_priv.c - [377/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_priv.c - 16:59:26 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [377/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/bdsp_raaga_int_priv.c 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageErrorCountUpdate 231/0 - 1 new errors 16:59:26 | INFO: send MessageErrorCountUpdate 232/0 - 1 new errors 16:59:26 | INFO: send MessageErrorCountUpdate 233/0 - 1 new errors 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 2970304 free: 2969504 used: 800 used pct: 1 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050468 free: 1049668 used: 800 used pct: 1 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050492 free: 1049692 used: 800 used pct: 1 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageStatus [380/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/bdsp_raaga_img.c - [380/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aache_decode.c - [380/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aache_decode_inter_frame.c - 16:59:26 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [380/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/bdsp_raaga_img.c 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageErrorCountUpdate 234/0 - 1 new errors 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050470 free: 1049670 used: 800 used pct: 1 16:59:26 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:26 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 1648 free: 848 used: 800 used pct: 49 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageStatus [382/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheadts_ids.c - [382/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aache_decode_tables.c - 16:59:26 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [382/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheadts_ids.c 16:59:26 | INFO: send MessageIndexingStatus 16:59:26 | INFO: send MessageErrorCountUpdate 236/0 - 2 new errors 16:59:26 | INFO: send MessageErrorCountUpdate 237/0 - 1 new errors 16:59:26 | INFO: send MessageErrorCountUpdate 239/0 - 2 new errors 16:59:26 | InterprocessIndexerCommandManager.cpp:59 pushIndexerCommands() | INFO: srctrlmem_icmd_a0ffbe50-d842 - size: 4194304 free: 2753952 used: 1440352 used pct: 35 16:59:26 | INFO: send MessageErrorCountUpdate 240/0 - 1 new errors 16:59:26 | INFO: send MessageErrorCountUpdate 241/0 - 1 new errors 16:59:27 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 2 returned with 0 Detaching after fork from child process 14421. 16:59:27 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 3 returned with 0 Detaching after fork from child process 14423. 16:59:27 | TaskBuildIndex.cpp:196 runIndexerProcess() | INFO: Indexer process 4 returned with 0 Detaching after fork from child process 14425. 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:27 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050494 free: 1049694 used: 800 used pct: 1 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | INFO: send MessageStatus [383/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheadts_ids_inter_frame.c 16:59:27 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [383/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheadts_ids_inter_frame.c 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:27 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 1050470 free: 1049670 used: 800 used pct: 1 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | INFO: send MessageStatus [384/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheloas_ids.c 16:59:27 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [384/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheloas_ids.c 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | INFO: send MessageErrorCountUpdate 242/0 - 1 new errors 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1 16:59:27 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_2_a0ffbe50-d8 - size: 1050494 free: 1049694 used: 800 used pct: 1 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 4 - storage count: 1 16:59:27 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_4_a0ffbe50-d8 - size: 1050494 free: 1049694 used: 800 used pct: 1 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | INFO: send MessageStatus [386/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_ac3_ids.c - [386/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_aacheloas_ids_inter_frame.c - 16:59:27 | StatusBarController.cpp:89 setStatus() | INFO: STATUS [386/3519] Indexing file: /home2/perforce/r8.1.0/3rdParty/bcm-7218/magnum/basemodules/dsp/src/raaga/firmware/fp2008/braaga_ac3_ids.c 16:59:27 | INFO: send MessageIndexingStatus 16:59:27 | INFO: send MessageErrorCountUpdate 243/0 - 1 new errors 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 3 - storage count: 1 16:59:27 | InterprocessIntermediateStorageManager.cpp:117 popIntermediateStorage() | INFO: srctrlmem_iist_3_a0ffbe50-d8 - size: 1050482 free: 1049682 used: 800 used pct: 1 16:59:27 | TaskBuildIndex.cpp:257 fetchIntermediateStorages() | INFO: 2 - storage count: 1

    Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7fffdd392700 (LWP 14249)] 0x0000000000d4ed44 in ?? () Missing separate debuginfos, use: debuginfo-install bzip2-libs-1.0.6-13.el7.x86_64 dbus-libs-1.10.24-7.el7.x86_64 elfutils-libelf-0.170-4.el7.x86_64 elfutils-libs-0.170-4.el7.x86_64 expat-2.1.0-10.el7_3.x86_64 glib2-2.54.2-2.el7.x86_64 glibc-2.17-222.el7.x86_64 libICE-1.0.9-9.el7.x86_64 libSM-1.2.2-2.el7.x86_64 libXcursor-1.1.14-8.el7.x86_64 libattr-2.4.46-13.el7.x86_64 libcap-2.22-9.el7.x86_64 libgcc-4.8.5-28.el7_5.1.x86_64 libgcrypt-1.5.3-14.el7.x86_64 libgpg-error-1.12-3.el7.x86_64 libstdc++-4.8.5-28.el7_5.1.x86_64 libuuid-2.23.2-52.el7_5.1.x86_64 libxcb-1.12-1.el7.x86_64 lz4-1.7.5-2.el7.x86_64 pcre-8.32-17.el7.x86_64 qt5-qtbase-gui-5.9.2-3.el7.x86_64 systemd-libs-219-57.el7_5.3.x86_64 xcb-util-0.4.0-2.el7.x86_64 xcb-util-image-0.4.0-2.el7.x86_64 xcb-util-keysyms-0.4.0-1.el7.x86_64 xcb-util-renderutil-0.3.9-3.el7.x86_64 xcb-util-wm-0.4.1-5.el7.x86_64 xz-libs-5.2.2-1.el7.x86_64 zlib-1.2.7-17.el7.x86_64 (gdb) i stack #0 0x0000000000d4ed44 in ?? () #1 0x0000000000d4f950 in ?? () #2 0x0000000000d4fe71 in boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family, boost::interprocess::offset_ptr<void, long, unsigned long, 0ul>, 0ul>::priv_deallocate(void*) () #3 0x0000000000d596f5 in boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family, boost::interprocess::offset_ptr<void, long, unsigned long, 0ul>, 0ul>::deallocate(void*) () #4 0x0000000000e9cf29 in ?? () #5 0x0000000000e9d378 in SharedIntermediateStorage::~SharedIntermediateStorage() () #6 0x0000000000e4f1e0 in InterprocessIntermediateStorageManager::popIntermediateStorage() () #7 0x0000000000d04ebf in TaskBuildIndex::fetchIntermediateStorages(std::shared_ptr) () #8 0x0000000000d092cd in TaskBuildIndex::doUpdate(std::shared_ptr) () #9 0x0000000000c7e351 in Task::update(std::shared_ptr) () #10 0x0000000000c8490f in TaskRunner::update(std::shared_ptr) () #11 0x0000000000c82fe4 in TaskGroupSequence::doUpdate(std::shared_ptr) () #12 0x0000000000c7e351 in Task::update(std::shared_ptr) () #13 0x0000000000c8490f in TaskRunner::update(std::shared_ptr) () #14 0x0000000000c80b24 in TaskGroupParallel::processTaskThreaded(std::shared_ptrTaskGroupParallel::TaskInfo, std::shared_ptr, std::shared_ptrstd::mutex) () #15 0x0000000000c80cf7 in std::thread::_Impl<std::_Bind_simple<std::_Mem_fn<void (TaskGroupParallel::)(std::shared_ptrTaskGroupParallel::TaskInfo, std::shared_ptr, std::shared_ptrstd::mutex)> (TaskGroupParallel, std::shared_ptrTaskGroupParallel::TaskInfo, std::shared_ptr, std::shared_ptrstd::mutex)> >::_M_run() () #16 0x00000000028f32d0 in ?? () #17 0x00007ffff734fe25 in start_thread () from /lib64/libpthread.so.0 #18 0x00007ffff4d79bad in clone () from /lib64/libc.so.6 (gdb) (gdb) i threads Id Target Id Frame 15 Thread 0x7fffc9eb7700 (LWP 14262) "Sourcetrail" 0x00007ffff4d6efcf in ppoll () from /lib64/libc.so.6 14 Thread 0x7fffca709700 (LWP 14257) "Sourcetrail" 0x00007ffff4d6efcf in ppoll () from /lib64/libc.so.6 13 Thread 0x7fffcaf5b700 (LWP 14256) "Sourcetrail" 0x00007ffff4d6efcf in ppoll () from /lib64/libc.so.6 12 Thread 0x7fffcb7ad700 (LWP 14254) "Sourcetrail" 0x00007ffff4d6efcf in ppoll () from /lib64/libc.so.6 11 Thread 0x7fffcbfff700 (LWP 14251) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0 10 Thread 0x7fffdcb40700 (LWP 14250) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0

    • 9 Thread 0x7fffdd392700 (LWP 14249) "Sourcetrail" 0x0000000000d4ed44 in ?? () 8 Thread 0x7fffddbe4700 (LWP 14248) "Sourcetrail" 0x0000000000d5acd7 in boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family, boost::interprocess::offset_ptr<void, long, unsigned long, 0ul>, 0ul>::priv_allocate(int, unsigned long, unsigned long&, void*&, unsigned long) () 7 Thread 0x7fffde92e700 (LWP 14168) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0 6 Thread 0x7fffdf180700 (LWP 14167) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0 5 Thread 0x7fffdf9d2700 (LWP 14166) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0 4 Thread 0x7fffe5a9e700 (LWP 14165) "QDBusConnection" 0x00007ffff4d6efcf in ppoll () from /lib64/libc.so.6 3 Thread 0x7fffe6af2700 (LWP 14164) "Sourcetrail" 0x00007ffff7356f3d in nanosleep () from /lib64/libpthread.so.0 2 Thread 0x7fffe754f700 (LWP 14163) "QXcbEventReader" 0x00007ffff4d6ef0d in poll () from /lib64/libc.so.6 1 Thread 0x7ffff7fc8840 (LWP 14158) "Sourcetrail" 0x00007ffff64905d5 in QImage::isNull() const () from /opt/sourcetrail/lib/libQt5Gui.so.5 (gdb)
    bug 
    opened by pwillard2 39
  • Linux: Python environment error results in not able to index any python projects

    Linux: Python environment error results in not able to index any python projects

    Can't index any python project and getting the error message of "An error occurred while checking environment path. Unable to check validity". This problem appears in Centos 7 for both version 2020_2_43 and 2020_4_35. However for Ubuntu 18.04.5, the version 2020_2_43 has no problem but the newer version 2020_4_35 stop to work.

    opened by ttang852 17
  • Every Maven project I try indexes 0 files

    Every Maven project I try indexes 0 files

    Maven settings is pointing to the correct file. Maven is working properly. Java installed on the machine is OpenJDK Runtime Environment (build 11.0.5+10-post-Ubuntu-0ubuntu1.118.04).

    tried several different projects, and the result is always the same. 0 indexed files when choosing maven project.

    On the other hand, creating the project as an empty java project , partially works, obviously with many errors, as it does not find dependencies.

    Any hint ?

    Thanks in advance.

    Linux Java 
    opened by Josemartins-ptc 17
  • Indexing starts, but no indexing is happening. Gets stuck.

    Indexing starts, but no indexing is happening. Gets stuck.

    I've installed Sourcetrail_2018_2_36_Linux_64bit in my Ubuntu 16.04 LTS and it woks till creating project. Then it also starts indexing, but it gets stuck. Always 0% Progress. I tried with tictactoe project and ran indexing for 30 minutes. After 30 minutes it has shown 0% Progress and 0/7 Files. Then I had a look in the log file directory, located in Menu: Help -> Show Log Folder ( ~/.config/sourcetrail/logs). But no logs has been generated.

    This tool is very handy. So, any kinda support will be very much appreciated.

    Thanks in advanced.

    opened by codemascot 17
  • Treat warnings as errors

    Treat warnings as errors

    • policy is enabled by default but truly works only if compiler was explicitly tested (meaning it will work only for MSVC for now)
    • system includes (STL, Boost, Qt) should use angle parentheses (this requirement is already have been satisfied)
    • unsafe code was wrapped in #pragma warning to make it obvious to the reader something unusual happens
    • implicit and c-casts were replaced with explicit c++ static_cast's for the same reason as above
    • only BUILD_PYTHON_LANGUAGE_PACKAGE and BUILD_CXX_LANGUAGE_PACKAGE were builded
    • this PR affects only MSVC, clang version will be dealt with later in other PR
    • docs for newly added cmake options can be found here: https://devblogs.microsoft.com/cppblog/broken-warnings-theory/

    Unrelated suggestion: consider replacing "squash and merge" policy with "rebase on top", so the history will be left intact and more granular. For that we'll need to add issue number to commit messages for diffirentiating where the feature started and ended in master branch probably

    Resolves #814

    opened by andronov-alexey 16
  • Add Sourcetrail to openSUSE repos

    Add Sourcetrail to openSUSE repos

    Similar to https://github.com/CoatiSoftware/Sourcetrail/issues/756 but for openSUSE.

    I started working on this here and will document progress here. And also mention once it landed in official repositories so it will be available via zypper install sourcetree.

    Linux 
    opened by jubalh 16
  • DMG not mountable on macOS 10.11.6 since 2018.3.13

    DMG not mountable on macOS 10.11.6 since 2018.3.13

    The dmg is created by running the bundle_install.sh script within the build directory. The file is generated by cmake from bundle_install.sh.in.

    The command to create it is:

    PACKAGE_DIR=<path_to_directory_containing_app_bundle>
    hdiutil create ${PACKAGE_DIR}_macOS_64bit.dmg -volname ${PACKAGE_DIR} -srcfolder ${PACKAGE_DIR}
    

    It is executed on macOS Mojave 10.14.5 (18F132) What is going wrong here?

    bug Mac good first issue 
    opened by egraether 15
  • JSON Compilation Database exported from Qt Creator 4.9-beta1 is unsupported

    JSON Compilation Database exported from Qt Creator 4.9-beta1 is unsupported

    Since Version 4.8, Qt Creator supports exporting and importing of JSON Compilation Databases. Theoretically, this is the missing link to pass a project from Qt Creator to Sourcetrail.

    However, there are two flavors of compilation databases: those with "arguments" lists and those with "command" values. Qt Creator exports the prior format and Sourcetrail seems to import the latter. That means that Qt Creator and Sourcetrail can currently not interoperate.

    Certainly, Qt Creator can/will allow the user to select one of the two formats for compilation database export in a future version. But I believe, it would also make sense to let Sourcetrail import the "arguments" variant.

    discussion 
    opened by aportale 14
  • Font rendering issues (Fontconfig error when starting Sourcetrail)

    Font rendering issues (Fontconfig error when starting Sourcetrail)

    DPI scaling issue: When using Sourcetrail on my laptop's screen (1920x1080, 157 ppi), the font is legible: screenshot from 2017-11-10 13-21-30 but when I drag it to my external monitor (1920x1200, 94 ppi), the font becomes very small screenshot from 2017-11-10 13-20-29 : Is this the expected scaling behaviour? I thought that the physical size of the font on the lower PPI screen should be larger, but it in fact becomes smaller. When looking at both screenshots at the same scaling, the font is indeed rendered at a smaller size on the lower PPI screen than on the higher screen.

    Font config issue: Sourcetrail seems to have some trouble loading the font so it defaults to the Monospace font? For instance: screenshot from 2017-11-10 13-29-31 does not look like the font used in the screenshots on Sourcetrail page (and it doesn't look like Source Code Pro which is what it defaulted to). When I launch Sourcetrail, I get this warning:

    ➜  Sourcetrail sourcetrail
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    

    (the contents of 10-scale-bitmap-fonts.conf is at the end of this message)

    I do have Source Code Pro installed:

    ➜  ~ fc-list
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-BlackIt.otf: Source Code Pro,Source Code Pro Black:style=Black Italic,Italic
    /usr/share/fonts/lyx/eufm10.ttf: eufm10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-LightIt.otf: Source Code Pro,Source Code Pro Light:style=Light Italic,Italic
    /usr/share/fonts/lyx/cmsy10.ttf: cmsy10:style=LyX
    /usr/share/fonts/lyx/msam10.ttf: msam10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Bold.otf: Source Code Pro:style=Bold
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Regular.otf: Source Code Pro:style=Regular
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Medium.otf: Source Code Pro,Source Code Pro Medium:style=Medium,Regular
    /usr/share/fonts/lyx/cmmi10.ttf: cmmi10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-MediumIt.otf: Source Code Pro,Source Code Pro Medium:style=Medium Italic,Italic
    /usr/share/X11/fonts/Type1/c0611bt_.pfb: Courier 10 Pitch:style=Bold Italic
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Light.otf: Source Code Pro,Source Code Pro Light:style=Light,Regular
    /usr/share/X11/fonts/Type1/UTBI____.pfa: Utopia:style=Bold Italic
    /usr/share/X11/fonts/Type1/c0419bt_.pfb: Courier 10 Pitch:style=Regular
    /usr/share/fonts/lyx/wasy10.ttf: wasy10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Black.otf: Source Code Pro,Source Code Pro Black:style=Black,Regular
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-ExtraLight.otf: Source Code Pro,Source Code Pro ExtraLight:style=ExtraLight,Regular
    /usr/share/X11/fonts/Type1/c0648bt_.pfb: Bitstream Charter:style=Regular
    /usr/share/fonts/lyx/esint10.ttf: esint10:style=LyX
    /usr/share/fonts/lyx/rsfs10.ttf: rsfs10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-BoldIt.otf: Source Code Pro:style=Bold Italic
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-ExtraLightIt.otf: Source Code Pro,Source Code Pro ExtraLight:style=ExtraLight Italic,Italic
    /usr/share/fonts/lyx/stmary10.ttf: stmary10:style=LyX
    /usr/share/X11/fonts/Type1/cursor.pfa: Cursor:style=Regular
    /usr/share/X11/fonts/Type1/UTB_____.pfa: Utopia:style=Bold
    /usr/share/fonts/lyx/cmex10.ttf: cmex10:style=LyX
    /usr/share/X11/fonts/Type1/c0583bt_.pfb: Courier 10 Pitch:style=Bold
    /usr/share/X11/fonts/Type1/UTI_____.pfa: Utopia:style=Italic
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-SemiboldIt.otf: Source Code Pro,Source Code Pro Semibold:style=Semibold Italic,Italic
    /usr/share/X11/fonts/Type1/c0582bt_.pfb: Courier 10 Pitch:style=Italic
    /usr/share/fonts/lyx/msbm10.ttf: msbm10:style=LyX
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-It.otf: Source Code Pro:style=Italic
    /usr/share/X11/fonts/Type1/c0633bt_.pfb: Bitstream Charter:style=Bold Italic
    /usr/share/X11/fonts/Type1/c0649bt_.pfb: Bitstream Charter:style=Italic
    /usr/share/fonts/adobe-source-code-pro/SourceCodePro-Semibold.otf: Source Code Pro,Source Code Pro Semibold:style=Semibold,Regular
    /usr/share/X11/fonts/Type1/c0632bt_.pfb: Bitstream Charter:style=Bold
    /usr/share/fonts/lyx/cmr10.ttf: cmr10:style=LyX
    /usr/share/X11/fonts/Type1/UTRG____.pfa: Utopia:style=Regular
    

    What could be the issue?

    I am using Sourcetrail in a X session forwarded over SSH (i.e. ssh myserver with ForwardX11 yes, and then run sourcetrail). Could this be the issue? The SSH client here is Fedora 26 (GNOME with Wayland), and the SSH server running Sourcetrail is RHEL 7.4.

    /etc/fonts/conf.d/10-scale-bitmap-fonts.conf:

    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    
    <match target="font">
      <test name="scalable" compare="eq">
        <bool>false</bool>
      </test>
      <edit name="pixelsizefixupfactor" mode="assign">
        <divide>
          <name target="pattern">pixelsize</name>
          <name target="font"   >pixelsize</name>
        </divide>
      </edit>
    </match>
    <match target="font">
      <test name="scalable" compare="eq">
        <bool>false</bool>
      </test>
      <edit name="scalingnotneeded" mode="assign">
        <and>
          <less>
            <name>pixelsizefixupfactor</name>
            <double>1.2</double>
          </less>
          <more>
            <name>pixelsizefixupfactor</name>
            <double>0.8</double>
          </more>
        </and>
      </edit>
    </match>
    <!--
      So far we determined the scale factor.  Now, check and if
      scaling is NOT desirable, just reset the scale factor to 1.0.
      -->
    <match target="font">
      <test name="scalable" compare="eq">
        <bool>false</bool>
      </test>
      <test name="pixelsize" target="pattern" compare="less">
        <double>64</double>
      </test>
      <test name="hinting" compare="eq">
        <bool>true</bool>
      </test>
      <test name="scalingnotneeded" compare="eq">
        <bool>true</bool>
      </test>
      <edit name="pixelsizefixupfactor" mode="assign">
        <double>1.0</double>
      </edit>
    </match>
    <!--
      If we *are* going to scale, go ahead and do it.
      -->
    <match target="font">
      <test name="scalable" compare="eq">
        <bool>false</bool>
      </test>
      <test name="pixelsizefixupfactor" compare="not_eq">
        <double>1.0</double>
      </test>
      <edit name="matrix" mode="assign">
        <times>
          <name>matrix</name>
          <matrix>
            <name>pixelsizefixupfactor</name> <double>0</double>
            <double>0</double> <name>pixelsizefixupfactor</name>
           </matrix>
        </times>
      </edit>
      <edit name="size" mode="assign">
        <divide>
          <name>size</name>
          <name>pixelsizefixupfactor</name>
        </divide>
      </edit>
    </match>
    
    </fontconfig>
    
    bug await reply Linux 
    opened by cjustin88 14
  • Run Coati 0.7 on Ubuntu : could not find or load Qt platform plugin

    Run Coati 0.7 on Ubuntu : could not find or load Qt platform plugin

    run Coati on Ubuntu 15.10 from shell and it was failed

    $<path_to_coati>: ./Coati
    
    This application failed to start because it could not find or load the Qt platform plugin "xcb"
    in "".
    
    Available platform plugins are: xcb.
    
    Reinstalling the application may fix this problem.
    Aborted (core dumped)
    
    bug 
    opened by rojaster 14
  • XUbuntu 19.10 Compile Issues [EDITED]

    XUbuntu 19.10 Compile Issues [EDITED]

    Running XUbuntu 19.10 with boost 1.97, but Sourcetrail requires boost 1.98.

    Running

    mkdir build
    cd build
    cmake ..
    

    Getting (relevent) out put.

    Could NOT find Boost: Found unsuitable version "1.67.0", but required is at
      least "1.68" (found /usr/include)
    
    Linux 
    opened by ericwomer 13
  • Return code '255' when indexing

    Return code '255' when indexing

    I just downloaded Sourcetrail today to in order to diagnose a python project. Unfortunately I always get the error : command "/opt/sourcetrail/bin//../share/data/python/SourcetrailPythonIndexer index --source-file-path /home/jgw/Documents/01_Projects/WLT/Test/WaferDataCopy.py --database-file-path /home/jgw/Documents/01_Projects/WLT/Test/Test.srctrldb_tmp" returned code "255".

    I tried the 2021.1.30 and the new 2021.4.19 version We are using CentOs 7 in the company.

    I attached the log which has been generated. Does someone know why it wont work for me?

    log_2021-11-30_15-03-37.txt

    opened by MystikReasons 0
  • Few function calls are not being mapped.

    Few function calls are not being mapped.

    I've noticed that a few function calls are being mapped properly below is an example.

    image

    Just noticed if I change the syntax a little bit it is working. This behaviour is quite random and unpredectibale.

    image

    opened by TummalaManish 0
  • Build sourcetrail with Github CICD.

    Build sourcetrail with Github CICD.

    Hi, I was surveying the SourceTrail project, and my opinion is that getting Github actions building SourceTrail is one of the steps to keep continuity.

    Benefits:

    Make it cheaper to make SourceTrail releases. Every build is a complete SourceTrail release candidate.

    Thoughts?

    I can help with this.

    discussion build 
    opened by fire 2
  • The program crash and exit when click menu Edit-> Preferences...

    The program crash and exit when click menu Edit-> Preferences...

    Sourcetrail crash when i click menu option Preferences under Edit, and window exit without error information showing, on Windows10 pro 21H1. hope the problem can be solved. thanks. : )

    bug 
    opened by jupittarius 2
  • An unknown exception was thrown during indexing.

    An unknown exception was thrown during indexing.

    This is my first attempt to use Sourcetrail. It failed with a spectacularly uninformative error message: "An unknown exception was thrown during indexing." I was attempting to index the code from the open source repository at https://github.com/FDA/openfda. I pulled this repo into a local directory on my machine, then tried to index it using Sourcetrail. The OpenFDA code uses Python more than any other language, so I told Sourcetrail that it was a "Python source group". I also told it to look for .py, .html, .js, .sh, and .json files, since those are all included in the repo. I ran the indexing, which went on for 20+ minutes before crashing with this veritably useless error message. What does it mean? Screen Shot 2021-10-04 at 11 23 42 AM

    bug Python 
    opened by RIKnight 1
Releases(2021.4.19)
Owner
Coati Software
Makers of Sourcetrail, interactive source explorer for C, C++, Java and Python.
Coati Software
Inria 1.4k Dec 29, 2022
OpenGrok is a fast and usable source code search and cross reference engine, written in Java

Copyright (c) 2006, 2020 Oracle and/or its affiliates. All rights reserved. OpenGrok - a wicked fast source browser OpenGrok - a wicked fast source br

Oracle 3.8k Jan 8, 2023
Astra: a Java tool for analysing and refactoring Java source code

What is Astra? Astra is a Java tool for analysing and refactoring Java source code. For example: "References to type A should instead reference type B

Alfa 51 Dec 26, 2022
mobsfscan is a static analysis tool that can find insecure code patterns in your Android and iOS source code.

mobsfscan is a static analysis tool that can find insecure code patterns in your Android and iOS source code. Supports Java, Kotlin, Swift, and Objective C Code. mobsfscan uses MobSF static analysis rules and is powered by semgrep and libsast pattern matcher.

Mobile Security Framework 347 Dec 29, 2022
Reformats Java source code to comply with Google Java Style.

google-java-format google-java-format is a program that reformats Java source code to comply with Google Java Style. Using the formatter from the comm

Google 4.8k Dec 31, 2022
A static analyzer for Java, C, C++, and Objective-C

Infer Infer is a static analysis tool for Java, C++, Objective-C, and C. Infer is written in OCaml. Installation Read our Getting Started page for det

Facebook 13.7k Dec 28, 2022
:coffee: SonarSource Static Analyzer for Java Code Quality and Security

Code Quality and Security for Java This SonarSource project is a code analyzer for Java projects. Information about the analysis of Java features is a

SonarSource 976 Jan 5, 2023
Source code of APK-Explorer-Editor (AEE), an open-source tool to explore the contents of an installed APK!

APK Explorer & Editor (AEE) APK Explorer & Editor, an open-source tool to explore the contents of an installed APK, is strictly made with an aim to in

APK Explorer & Editor 271 Jan 8, 2023
Drifty is an open-source interactive File Downloader system built with java. It is currently available in CLI mode and has the GUI version under active development.

Drifty Drifty is an open-source interactive File Downloader system built using Java. It takes the link to the file, the directory where it needs to be

Saptarshi Sarkar 60 Dec 24, 2022
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.

Dex Dex : The data explorer is a powerful tool for data science. It is written in Groovy and Java on top of JavaFX and offers the ability to: Read in

Patrick Martin 1.3k Jan 8, 2023
An advanced book explorer/catalog application written in Java and Kotlin.

Boomega An advanced book explorer/catalog application written in Java and Kotlin. ✨ Features Cross-platform Dark/Light theme, modern UI Multiple UI la

Daniel Gyoerffy 54 Nov 10, 2022
A bitcoin explorer Java library that utilizes multiple data sources at once.

Bitcoin Explorer A bitcoin explorer library that utilizes multiple data sources at once. Branch Build Unit Tests master development Table of Contents

Scorpius 3 Jan 31, 2022
JVM Explorer is a Java desktop application for browsing loaded class files inside locally running Java Virtual Machines.

JVM Explorer JVM Explorer is a Java desktop application for browsing loaded class files inside locally running Java Virtual Machines. Features Browse

null 109 Nov 30, 2022
Free and open source log management

Graylog Welcome! Graylog is an open source log management platform. You can read more about the project on our website and check out the documentation

Graylog 6.4k Jan 6, 2023
OpenRefine is a free, open source power tool for working with messy data and improving it

OpenRefine OpenRefine is a Java-based power tool that allows you to load data, understand it, clean it up, reconcile it, and augment it with data comi

OpenRefine 9.2k Jan 1, 2023
CompreFace is a free and open-source face recognition system from Exadel

CompreFace can be easily integrated into any system without prior machine learning skills. CompreFace provides REST API for face recognition, face verification, face detection, landmark detection, age, and gender recognition and is easily deployed with docker

Exadel 2.6k Dec 31, 2022
Free and 100% open source Progressive Java Runtime for modern Java™ deployments supported by a leading OpenJDK contributor

BellSoft Liberica JDK is a build of OpenJDK that is tested and verified to be compliant with the Java SE specification using OpenJDK Technology Compat

null 195 Dec 22, 2022
LITIENGINE is a free and open source Java 2D Game Engine

LITIENGINE is a free and open source Java 2D Game Engine. It provides a comprehensive Java library and a dedicated map editor to create tile-based 2D games.

Gurkenlabs 572 Jan 7, 2023