This file is indexed.

/usr/include/plymouth-1/ply/ply-terminal-session.h is in libplymouth-dev 0.9.2-3ubuntu13.

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
/* ply-terminal-session.h - api for spawning a program in pseudo-terminal
 *
 * Copyright (C) 2007 Red Hat, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * Written By: Ray Strode <rstrode@redhat.com>
 */
#ifndef PLY_TERMINAL_SESSION_H
#define PLY_TERMINAL_SESSION_H

#include <stdbool.h>
#include <stdint.h>
#include <unistd.h>

#include "ply-event-loop.h"
#include "ply-buffer.h"

typedef struct _ply_terminal_session ply_terminal_session_t;

typedef void (*ply_terminal_session_begin_handler_t)(void                   *user_data,
                                                     ply_terminal_session_t *session);

typedef void (*ply_terminal_session_output_handler_t)(void                   *user_data,
                                                      const uint8_t          *output,
                                                      size_t                  size,
                                                      ply_terminal_session_t *session);
typedef void (*ply_terminal_session_hangup_handler_t)(void                   *user_data,
                                                      ply_terminal_session_t *session);

typedef enum
{
        PLY_TERMINAL_SESSION_FLAGS_NONE = 0x0,
        PLY_TERMINAL_SESSION_FLAGS_RUN_IN_PARENT = 0x1,
        PLY_TERMINAL_SESSION_FLAGS_LOOK_IN_PATH = 0x2,
        PLY_TERMINAL_SESSION_FLAGS_REDIRECT_CONSOLE = 0x4,
} ply_terminal_session_flags_t;

#ifndef PLY_HIDE_FUNCTION_DECLARATIONS
ply_terminal_session_t *ply_terminal_session_new (const char *const *argv);
void ply_terminal_session_free (ply_terminal_session_t *session);
void ply_terminal_session_attach_to_event_loop (ply_terminal_session_t *session,
                                                ply_event_loop_t       *loop);
bool ply_terminal_session_run (ply_terminal_session_t               *session,
                               ply_terminal_session_flags_t          flags,
                               ply_terminal_session_begin_handler_t  begin_handler,
                               ply_terminal_session_output_handler_t output_handler,
                               ply_terminal_session_hangup_handler_t done_handler,
                               void                                 *user_data);

bool ply_terminal_session_attach (ply_terminal_session_t               *session,
                                  ply_terminal_session_flags_t          flags,
                                  ply_terminal_session_output_handler_t output_handler,
                                  ply_terminal_session_hangup_handler_t hangup_handler,
                                  int                                   ptmx,
                                  void                                 *user_data);

void ply_terminal_session_detach (ply_terminal_session_t *session);

int ply_terminal_session_get_fd (ply_terminal_session_t *session);
bool ply_terminal_session_open_log (ply_terminal_session_t *session,
                                    const char             *filename);
void ply_terminal_session_close_log (ply_terminal_session_t *session);
#endif

#endif /* PLY_TERMINAL_SESSION_H */
/* vim: set ts=4 sw=4 expandtab autoindent cindent cino={.5s,(0: */