This file is indexed.

/usr/share/gocode/src/github.com/jacobsa/bazilfuse/fs/fstestutil/mountinfo.go is in golang-github-jacobsa-bazilfuse-dev 0.0~git20150622-2.

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
package fstestutil

// MountInfo describes a mounted file system.
type MountInfo struct {
	FSName string
	Type   string
}

// GetMountInfo finds information about the mount at mnt. It is
// intended for use by tests only, and only fetches information
// relevant to the current tests.
func GetMountInfo(mnt string) (*MountInfo, error) {
	return getMountInfo(mnt)
}

// cstr converts a nil-terminated C string into a Go string
func cstr(ca []int8) string {
	s := make([]byte, 0, len(ca))
	for _, c := range ca {
		if c == 0x00 {
			break
		}
		s = append(s, byte(c))
	}
	return string(s)
}