Lines Matching full:environment
26 /// Return the value of a given environment variable.
29 /// The name of the environment variable.
32 /// The value of the environment variable or null if not present.
33 /// If the environment variable has no value but is present, a valid
38 /// The number of environment variables.
41 /// Return the name of the environment variable at a given index from the
42 /// internal list of environment variables.
45 /// The index of the environment variable in the internal list.
51 /// Return the value of the environment variable at a given index from the
52 /// internal list of environment variables.
55 /// The index of the environment variable in the internal list.
59 /// If the environment variable has no value but is present, a valid
63 /// Return all environment variables contained in this object. Each variable
68 /// Return an lldb::SBStringList object with the environment variables.
71 /// Add or replace an existing environment variable. The input must be a
79 /// Update this object with the given environment variables. The input is a
82 /// If append is false, the provided environment will replace the existing
83 /// environment. Otherwise, existing values will be updated of left untouched
87 /// The environment variable entries.
90 /// Flag that controls whether to replace the existing environment.
93 /// Set the value of a given environment variable.
97 /// The name of the environment variable to set.
100 /// The value of the environment variable to set.
103 /// Flag that indicates whether to overwrite an existing environment
110 /// Unset an environment variable if exists.
113 /// The name of the environment variable to unset.
119 /// Delete all the environment variables.
127 SBEnvironment(lldb_private::Environment rhs);
129 lldb_private::Environment &ref() const;
132 std::unique_ptr<lldb_private::Environment> m_opaque_up;