コード例 #1
0
ファイル: sshclient.cpp プロジェクト: aopui/gnash
// Write bytes to the already opened SSH connection
int
SSHClient::sshWrite(cygnal::Buffer &buf)
{
    GNASH_REPORT_FUNCTION;

    return sshWrite(buf.reference(), buf.allocated());
}
コード例 #2
0
ファイル: buffer.cpp プロジェクト: jlopez/gnash
std::string
Buffer::hexify (cygnal::Buffer &buf, bool ascii)
{
    return gnash::hexify(buf.reference(), buf.allocated(), ascii);
}
コード例 #3
0
ファイル: diskstream.cpp プロジェクト: jlopez/gnash
bool
DiskStream::writeToDisk(const std::string &filespec, cygnal::Buffer &data)
{
//    GNASH_REPORT_FUNCTION;
    return writeToDisk(filespec, data.reference(), data.allocated());
}
コード例 #4
0
ファイル: echo.cpp プロジェクト: aopui/gnash
std::shared_ptr<cygnal::Buffer>
EchoTest::formatEchoResponse(double num, cygnal::Buffer &data)
{
//    GNASH_REPORT_FUNCTION;
    return formatEchoResponse(num, data.reference(), data.allocated());
}