Symbol: Shell
headers/os/package/User.h
36
const BString& Shell() const;
src/apps/terminal/Shell.cpp
106
Shell::~Shell()
src/apps/terminal/Shell.cpp
113
Shell::Open(int row, int col, const ShellParameters& parameters)
src/apps/terminal/Shell.cpp
133
Shell::Close()
src/apps/terminal/Shell.cpp
150
Shell::TTYName() const
src/apps/terminal/Shell.cpp
157
Shell::Read(void *buffer, size_t numBytes) const
src/apps/terminal/Shell.cpp
167
Shell::Write(const void *buffer, size_t numBytes)
src/apps/terminal/Shell.cpp
177
Shell::UpdateWindowSize(int rows, int columns)
src/apps/terminal/Shell.cpp
189
Shell::GetAttr(struct termios &attr) const
src/apps/terminal/Shell.cpp
198
Shell::SetAttr(const struct termios &attr)
src/apps/terminal/Shell.cpp
207
Shell::FD() const
src/apps/terminal/Shell.cpp
214
Shell::HasActiveProcesses() const
src/apps/terminal/Shell.cpp
225
Shell::GetActiveProcessInfo(ActiveProcessInfo& _info) const
src/apps/terminal/Shell.cpp
264
Shell::AttachBuffer(TerminalBuffer *buffer)
src/apps/terminal/Shell.cpp
276
Shell::DetachBuffer()
src/apps/terminal/Shell.cpp
359
Shell::_Spawn(int row, int col, const ShellParameters& parameters)
src/apps/terminal/Shell.cpp
96
Shell::Shell()
src/apps/terminal/Shell.h
27
class Shell {
src/apps/terminal/Shell.h
29
Shell();
src/apps/terminal/Shell.h
30
virtual ~Shell();
src/apps/terminal/TermView.cpp
1013
TermView::_AttachShell(Shell *shell, const ShellParameters& shellParameters)
src/apps/terminal/TermView.cpp
1028
Shell*
src/apps/terminal/TermView.cpp
1031
Shell* shell = fShell;
src/apps/terminal/TermView.cpp
1775
Shell* shell = _DetachShell();
src/apps/terminal/TermView.cpp
329
fShell = new (std::nothrow) Shell();
src/apps/terminal/TermView.cpp
361
Shell* shell = _DetachShell();
src/apps/terminal/TermView.h
205
status_t _AttachShell(Shell* shell, const ShellParameters& shellParameters);
src/apps/terminal/TermView.h
206
Shell* _DetachShell();
src/apps/terminal/TermView.h
277
Shell* fShell;
src/apps/terminal/TermView.h
46
class Shell;
src/bin/package/PackageInfoPrinter.h
371
if (!user.Shell().IsEmpty())
src/bin/package/PackageInfoPrinter.h
372
printf("\t\tshell: %s\n", user.Shell().String());
src/kits/package/PackageInfo.cpp
1415
|| (error = archive->AddString(shellField, user->Shell())) != B_OK
src/kits/package/PackageInfoStringBuilder.h
193
if (!value->Shell().IsEmpty()) {
src/kits/package/PackageInfoStringBuilder.h
195
_WriteMaybeQuoted(value->Shell());
src/kits/package/hpkg/WriterImplBase.cpp
543
B_HPKG_ATTRIBUTE_ID_PACKAGE_USER_SHELL, user->Shell(),
src/servers/package/CommitTransactionHandler.cpp
783
if (!user.Shell().IsEmpty()) {
src/servers/package/CommitTransactionHandler.cpp
785
+ FSUtils::ShellEscapeString(user.Shell()).String() + " ";
src/tests/servers/registrar/RosterShell.cpp
278
Shell shell;