This file is indexed.

/usr/share/php/libgv-php5/gv.php is in libgv-php5 2.26.3-10ubuntu1.

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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?php

/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 2.0.4
 * 
 * This file is not intended to be easily readable and contains a number of 
 * coding conventions designed to improve portability and efficiency. Do not make
 * changes to this file unless you know what you are doing--modify the SWIG 
 * interface file instead. 
 * ----------------------------------------------------------------------------- */

// Try to load our extension if it's not already loaded.
if (!extension_loaded('gv')) {
  if (strtolower(substr(PHP_OS, 0, 3)) === 'win') {
    if (!dl('php_gv.dll')) return;
  } else {
    // PHP_SHLIB_SUFFIX gives 'dylib' on MacOS X but modules are 'so'.
    if (PHP_SHLIB_SUFFIX === 'dylib') {
      if (!dl('gv.so')) return;
    } else {
      if (!dl('gv.'.PHP_SHLIB_SUFFIX)) return;
    }
  }
}



abstract class gv {
	static function digraph($name) {
		return digraph($name);
	}

	static function strictgraph($name) {
		return strictgraph($name);
	}

	static function strictdigraph($name) {
		return strictdigraph($name);
	}

	static function readstring($string) {
		return readstring($string);
	}

	static function read($filename_or_f) {
		return read($filename_or_f);
	}

	static function graph($name_or_g,$name=null) {
		switch (func_num_args()) {
		case 1: $r=graph($name_or_g); break;
		default: $r=graph($name_or_g,$name);
		}
		return $r;
	}

	static function node($g,$name) {
		return node($g,$name);
	}

	static function edge($t_or_tname_or_g,$h_or_hname_or_tname,$hname=null) {
		switch (func_num_args()) {
		case 2: $r=edge($t_or_tname_or_g,$h_or_hname_or_tname); break;
		default: $r=edge($t_or_tname_or_g,$h_or_hname_or_tname,$hname);
		}
		return $r;
	}

	static function setv($g_or_n_or_e,$attr_or_a,$val) {
		return setv($g_or_n_or_e,$attr_or_a,$val);
	}

	static function getv($g_or_n_or_e,$attr_or_a) {
		return getv($g_or_n_or_e,$attr_or_a);
	}

	static function nameof($g_or_n_or_a) {
		return nameof($g_or_n_or_a);
	}

	static function findsubg($g,$name) {
		return findsubg($g,$name);
	}

	static function findnode($g,$name) {
		return findnode($g,$name);
	}

	static function findedge($t,$h) {
		return findedge($t,$h);
	}

	static function findattr($g_or_n_or_e,$name) {
		return findattr($g_or_n_or_e,$name);
	}

	static function headof($e) {
		return headof($e);
	}

	static function tailof($e) {
		return tailof($e);
	}

	static function graphof($g_or_e_or_n) {
		return graphof($g_or_e_or_n);
	}

	static function rootof($g) {
		return rootof($g);
	}

	static function protonode($g) {
		return protonode($g);
	}

	static function protoedge($g) {
		return protoedge($g);
	}

	static function ok($g_or_n_or_e_or_a) {
		return ok($g_or_n_or_e_or_a);
	}

	static function firstsubg($g) {
		return firstsubg($g);
	}

	static function nextsubg($g,$sg) {
		return nextsubg($g,$sg);
	}

	static function firstsupg($g) {
		return firstsupg($g);
	}

	static function nextsupg($g,$sg) {
		return nextsupg($g,$sg);
	}

	static function firstedge($g_or_n) {
		return firstedge($g_or_n);
	}

	static function nextedge($g_or_n,$e) {
		return nextedge($g_or_n,$e);
	}

	static function firstout($g_or_n) {
		return firstout($g_or_n);
	}

	static function nextout($g_or_n,$e) {
		return nextout($g_or_n,$e);
	}

	static function firsthead($n) {
		return firsthead($n);
	}

	static function nexthead($n,$h) {
		return nexthead($n,$h);
	}

	static function firstin($g_or_n) {
		return firstin($g_or_n);
	}

	static function nextin($n_or_g,$e) {
		return nextin($n_or_g,$e);
	}

	static function firsttail($n) {
		return firsttail($n);
	}

	static function nexttail($n,$t) {
		return nexttail($n,$t);
	}

	static function firstnode($g_or_e) {
		return firstnode($g_or_e);
	}

	static function nextnode($g_or_e,$n) {
		return nextnode($g_or_e,$n);
	}

	static function firstattr($g_or_e_or_n) {
		return firstattr($g_or_e_or_n);
	}

	static function nextattr($g_or_e_or_n,$a) {
		return nextattr($g_or_e_or_n,$a);
	}

	static function rm($g_or_n_or_e) {
		return rm($g_or_n_or_e);
	}

	static function layout($g,$engine) {
		return layout($g,$engine);
	}

	static function render($g,$format=null,$fout_or_filename=null) {
		switch (func_num_args()) {
		case 1: $r=render($g); break;
		case 2: $r=render($g,$format); break;
		default: $r=render($g,$format,$fout_or_filename);
		}
		return $r;
	}

	static function renderchannel($g,$format,$channelname) {
		return renderchannel($g,$format,$channelname);
	}

	static function renderresult($g,$format,$outdata) {
		renderresult($g,$format,$outdata);
	}

	static function renderdata($g,$format) {
		return renderdata($g,$format);
	}

	static function write($g,$filename_or_f) {
		return write($g,$filename_or_f);
	}
}

/* PHP Proxy Classes */

?>