This file is indexed.

/usr/include/osl/misc/trace.h is in libosl-dev 0.4.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* trace.h
 */
#ifndef OSL_TRACE_H
#define OSL_TRACE_H

// #define OSL_STATIC_INITIALIZER_TRACE

#ifdef OSL_STATIC_INITIALIZER_TRACE
#  include <iostream>
#endif

namespace osl
{
namespace misc
{
  struct StaticInitializeTracer
  {
    StaticInitializeTracer(const char *filename);
  };
} // namespace misc
} // namespace osl

#define OSL_TRACE static osl::misc::StaticInitializeTracer tracer( __FILE__)

#endif /* OSL_TRACE_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: