This file is indexed.

/usr/include/llvm-3.8/llvm/Object/ArchiveWriter.h is in llvm-3.8-dev 1:3.8-2ubuntu3~trusty5.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//===- ArchiveWriter.h - ar archive file format writer ----------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Declares the writeArchive function for writing an archive file.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_OBJECT_ARCHIVEWRITER_H
#define LLVM_OBJECT_ARCHIVEWRITER_H

#include "llvm/ADT/StringRef.h"
#include "llvm/Object/Archive.h"
#include "llvm/Support/FileSystem.h"

namespace llvm {

class NewArchiveIterator {
  bool IsNewMember;
  StringRef Name;

  object::Archive::Child OldMember;

public:
  NewArchiveIterator(const object::Archive::Child &OldMember, StringRef Name);
  NewArchiveIterator(StringRef FileName);
  bool isNewMember() const;
  StringRef getName() const;

  const object::Archive::Child &getOld() const;

  StringRef getNew() const;
  llvm::ErrorOr<int> getFD(sys::fs::file_status &NewStatus) const;
  const sys::fs::file_status &getStatus() const;
};

std::pair<StringRef, std::error_code>
writeArchive(StringRef ArcName, std::vector<NewArchiveIterator> &NewMembers,
             bool WriteSymtab, object::Archive::Kind Kind, bool Deterministic,
             bool Thin);
}

#endif