This file is indexed.

/usr/share/common-lisp/ros/dynamic_reconfigure/srv/Reconfigure.lisp is in cl-dynamic-reconfigure 1.5.46-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
 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
; Auto-generated. Do not edit!


(cl:in-package dynamic_reconfigure-srv)


;//! \htmlinclude Reconfigure-request.msg.html

(cl:defclass <Reconfigure-request> (roslisp-msg-protocol:ros-message)
  ((config
    :reader config
    :initarg :config
    :type dynamic_reconfigure-msg:Config
    :initform (cl:make-instance 'dynamic_reconfigure-msg:Config)))
)

(cl:defclass Reconfigure-request (<Reconfigure-request>)
  ())

(cl:defmethod cl:initialize-instance :after ((m <Reconfigure-request>) cl:&rest args)
  (cl:declare (cl:ignorable args))
  (cl:unless (cl:typep m 'Reconfigure-request)
    (roslisp-msg-protocol:msg-deprecation-warning "using old message class name dynamic_reconfigure-srv:<Reconfigure-request> is deprecated: use dynamic_reconfigure-srv:Reconfigure-request instead.")))

(cl:ensure-generic-function 'config-val :lambda-list '(m))
(cl:defmethod config-val ((m <Reconfigure-request>))
  (roslisp-msg-protocol:msg-deprecation-warning "Using old-style slot reader dynamic_reconfigure-srv:config-val is deprecated.  Use dynamic_reconfigure-srv:config instead.")
  (config m))
(cl:defmethod roslisp-msg-protocol:serialize ((msg <Reconfigure-request>) ostream)
  "Serializes a message object of type '<Reconfigure-request>"
  (roslisp-msg-protocol:serialize (cl:slot-value msg 'config) ostream)
)
(cl:defmethod roslisp-msg-protocol:deserialize ((msg <Reconfigure-request>) istream)
  "Deserializes a message object of type '<Reconfigure-request>"
  (roslisp-msg-protocol:deserialize (cl:slot-value msg 'config) istream)
  msg
)
(cl:defmethod roslisp-msg-protocol:ros-datatype ((msg (cl:eql '<Reconfigure-request>)))
  "Returns string type for a service object of type '<Reconfigure-request>"
  "dynamic_reconfigure/ReconfigureRequest")
(cl:defmethod roslisp-msg-protocol:ros-datatype ((msg (cl:eql 'Reconfigure-request)))
  "Returns string type for a service object of type 'Reconfigure-request"
  "dynamic_reconfigure/ReconfigureRequest")
(cl:defmethod roslisp-msg-protocol:md5sum ((type (cl:eql '<Reconfigure-request>)))
  "Returns md5sum for a message object of type '<Reconfigure-request>"
  "bb125d226a21982a4a98760418dc2672")
(cl:defmethod roslisp-msg-protocol:md5sum ((type (cl:eql 'Reconfigure-request)))
  "Returns md5sum for a message object of type 'Reconfigure-request"
  "bb125d226a21982a4a98760418dc2672")
(cl:defmethod roslisp-msg-protocol:message-definition ((type (cl:eql '<Reconfigure-request>)))
  "Returns full string definition for message of type '<Reconfigure-request>"
  (cl:format cl:nil "Config config~%~%================================================================================~%MSG: dynamic_reconfigure/Config~%BoolParameter[] bools~%IntParameter[] ints~%StrParameter[] strs~%DoubleParameter[] doubles~%GroupState[] groups~%~%================================================================================~%MSG: dynamic_reconfigure/BoolParameter~%string name~%bool value~%~%================================================================================~%MSG: dynamic_reconfigure/IntParameter~%string name~%int32 value~%~%================================================================================~%MSG: dynamic_reconfigure/StrParameter~%string name~%string value~%~%================================================================================~%MSG: dynamic_reconfigure/DoubleParameter~%string name~%float64 value~%~%================================================================================~%MSG: dynamic_reconfigure/GroupState~%string name~%bool state~%int32 id~%int32 parent~%~%~%"))
(cl:defmethod roslisp-msg-protocol:message-definition ((type (cl:eql 'Reconfigure-request)))
  "Returns full string definition for message of type 'Reconfigure-request"
  (cl:format cl:nil "Config config~%~%================================================================================~%MSG: dynamic_reconfigure/Config~%BoolParameter[] bools~%IntParameter[] ints~%StrParameter[] strs~%DoubleParameter[] doubles~%GroupState[] groups~%~%================================================================================~%MSG: dynamic_reconfigure/BoolParameter~%string name~%bool value~%~%================================================================================~%MSG: dynamic_reconfigure/IntParameter~%string name~%int32 value~%~%================================================================================~%MSG: dynamic_reconfigure/StrParameter~%string name~%string value~%~%================================================================================~%MSG: dynamic_reconfigure/DoubleParameter~%string name~%float64 value~%~%================================================================================~%MSG: dynamic_reconfigure/GroupState~%string name~%bool state~%int32 id~%int32 parent~%~%~%"))
(cl:defmethod roslisp-msg-protocol:serialization-length ((msg <Reconfigure-request>))
  (cl:+ 0
     (roslisp-msg-protocol:serialization-length (cl:slot-value msg 'config))
))
(cl:defmethod roslisp-msg-protocol:ros-message-to-list ((msg <Reconfigure-request>))
  "Converts a ROS message object to a list"
  (cl:list 'Reconfigure-request
    (cl:cons ':config (config msg))
))
;//! \htmlinclude Reconfigure-response.msg.html

(cl:defclass <Reconfigure-response> (roslisp-msg-protocol:ros-message)
  ((config
    :reader config
    :initarg :config
    :type dynamic_reconfigure-msg:Config
    :initform (cl:make-instance 'dynamic_reconfigure-msg:Config)))
)

(cl:defclass Reconfigure-response (<Reconfigure-response>)
  ())

(cl:defmethod cl:initialize-instance :after ((m <Reconfigure-response>) cl:&rest args)
  (cl:declare (cl:ignorable args))
  (cl:unless (cl:typep m 'Reconfigure-response)
    (roslisp-msg-protocol:msg-deprecation-warning "using old message class name dynamic_reconfigure-srv:<Reconfigure-response> is deprecated: use dynamic_reconfigure-srv:Reconfigure-response instead.")))

(cl:ensure-generic-function 'config-val :lambda-list '(m))
(cl:defmethod config-val ((m <Reconfigure-response>))
  (roslisp-msg-protocol:msg-deprecation-warning "Using old-style slot reader dynamic_reconfigure-srv:config-val is deprecated.  Use dynamic_reconfigure-srv:config instead.")
  (config m))
(cl:defmethod roslisp-msg-protocol:serialize ((msg <Reconfigure-response>) ostream)
  "Serializes a message object of type '<Reconfigure-response>"
  (roslisp-msg-protocol:serialize (cl:slot-value msg 'config) ostream)
)
(cl:defmethod roslisp-msg-protocol:deserialize ((msg <Reconfigure-response>) istream)
  "Deserializes a message object of type '<Reconfigure-response>"
  (roslisp-msg-protocol:deserialize (cl:slot-value msg 'config) istream)
  msg
)
(cl:defmethod roslisp-msg-protocol:ros-datatype ((msg (cl:eql '<Reconfigure-response>)))
  "Returns string type for a service object of type '<Reconfigure-response>"
  "dynamic_reconfigure/ReconfigureResponse")
(cl:defmethod roslisp-msg-protocol:ros-datatype ((msg (cl:eql 'Reconfigure-response)))
  "Returns string type for a service object of type 'Reconfigure-response"
  "dynamic_reconfigure/ReconfigureResponse")
(cl:defmethod roslisp-msg-protocol:md5sum ((type (cl:eql '<Reconfigure-response>)))
  "Returns md5sum for a message object of type '<Reconfigure-response>"
  "bb125d226a21982a4a98760418dc2672")
(cl:defmethod roslisp-msg-protocol:md5sum ((type (cl:eql 'Reconfigure-response)))
  "Returns md5sum for a message object of type 'Reconfigure-response"
  "bb125d226a21982a4a98760418dc2672")
(cl:defmethod roslisp-msg-protocol:message-definition ((type (cl:eql '<Reconfigure-response>)))
  "Returns full string definition for message of type '<Reconfigure-response>"
  (cl:format cl:nil "Config config~%~%~%================================================================================~%MSG: dynamic_reconfigure/Config~%BoolParameter[] bools~%IntParameter[] ints~%StrParameter[] strs~%DoubleParameter[] doubles~%GroupState[] groups~%~%================================================================================~%MSG: dynamic_reconfigure/BoolParameter~%string name~%bool value~%~%================================================================================~%MSG: dynamic_reconfigure/IntParameter~%string name~%int32 value~%~%================================================================================~%MSG: dynamic_reconfigure/StrParameter~%string name~%string value~%~%================================================================================~%MSG: dynamic_reconfigure/DoubleParameter~%string name~%float64 value~%~%================================================================================~%MSG: dynamic_reconfigure/GroupState~%string name~%bool state~%int32 id~%int32 parent~%~%~%"))
(cl:defmethod roslisp-msg-protocol:message-definition ((type (cl:eql 'Reconfigure-response)))
  "Returns full string definition for message of type 'Reconfigure-response"
  (cl:format cl:nil "Config config~%~%~%================================================================================~%MSG: dynamic_reconfigure/Config~%BoolParameter[] bools~%IntParameter[] ints~%StrParameter[] strs~%DoubleParameter[] doubles~%GroupState[] groups~%~%================================================================================~%MSG: dynamic_reconfigure/BoolParameter~%string name~%bool value~%~%================================================================================~%MSG: dynamic_reconfigure/IntParameter~%string name~%int32 value~%~%================================================================================~%MSG: dynamic_reconfigure/StrParameter~%string name~%string value~%~%================================================================================~%MSG: dynamic_reconfigure/DoubleParameter~%string name~%float64 value~%~%================================================================================~%MSG: dynamic_reconfigure/GroupState~%string name~%bool state~%int32 id~%int32 parent~%~%~%"))
(cl:defmethod roslisp-msg-protocol:serialization-length ((msg <Reconfigure-response>))
  (cl:+ 0
     (roslisp-msg-protocol:serialization-length (cl:slot-value msg 'config))
))
(cl:defmethod roslisp-msg-protocol:ros-message-to-list ((msg <Reconfigure-response>))
  "Converts a ROS message object to a list"
  (cl:list 'Reconfigure-response
    (cl:cons ':config (config msg))
))
(cl:defmethod roslisp-msg-protocol:service-request-type ((msg (cl:eql 'Reconfigure)))
  'Reconfigure-request)
(cl:defmethod roslisp-msg-protocol:service-response-type ((msg (cl:eql 'Reconfigure)))
  'Reconfigure-response)
(cl:defmethod roslisp-msg-protocol:ros-datatype ((msg (cl:eql 'Reconfigure)))
  "Returns string type for a service object of type '<Reconfigure>"
  "dynamic_reconfigure/Reconfigure")