Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cairostatus(3) [php man page]

CAIROSTATUS(3)								 1							    CAIROSTATUS(3)

The CairoStatus class

INTRODUCTION
CairoStatus is used to indicate errors that can occur when using Cairo. In some cases it is returned directly by functions. but when using CairoContext, the last error, if any, is stored in the object and can be retrieved with CairoContext::status or cairo_status(3). New entries may be added in future versions. Use Cairo::statusToString or cairo_status_to_string(3) to get a human-readable representation of an error message. CLASS SYNOPSIS
CairoStatus CairoStatus Constants o const integer$CairoStatus::SUCCESS0 o const integer$CairoStatus::NO_MEMORY1 o const integer$CairoStatus::INVALID_RESTORE2 o const integer$CairoStatus::INVALID_POP_GROUP3 o const integer$CairoStatus::NO_CURRENT_POINT4 o const integer$CairoStatus::INVALID_MATRIX5 o const integer$CairoStatus::INVALID_STATUS6 o const integer$CairoStatus::NULL_POINTER7 o const integer$CairoStatus::INVALID_STRING8 o const integer$CairoStatus::INVALID_PATH_DATA9 o const integer$CairoStatus::READ_ERROR10 o const integer$CairoStatus::WRITE_ERROR11 o const integer$CairoStatus::SURFACE_FINISHED12 o const integer$CairoStatus::SURFACE_TYPE_MISMATCH13 o const integer$CairoStatus::PATTERN_TYPE_MISMATCH14 o const integer$CairoStatus::INVALID_CONTENT15 o const integer$CairoStatus::INVALID_FORMAT16 o const integer$CairoStatus::INVALID_VISUAL17 o const integer$CairoStatus::FILE_NOT_FOUND18 o const integer$CairoStatus::INVALID_DASH19 o const integer$CairoStatus::INVALID_DSC_COMMENT20 o const integer$CairoStatus::INVALID_INDEX21 o const integer$CairoStatus::CLIP_NOT_REPRESENTABLE22 o const integer$CairoStatus::TEMP_FILE_ERROR23 o const integer$CairoStatus::INVALID_STRIDE24 PREDEFINED CONSTANTS
o CairoStatus::SUCCESS -No error has occurred o CairoStatus::NO_MEMORY -Out of memory o CairoStatus::INVALID_RESTORE -cairo_restore(3) called without matching cairo_save(3) o CairoStatus::INVALID_POP_GROUP -No saved group to pop o CairoStatus::NO_CURRENT_POINT -No current point defined o CairoStatus::INVALID_MATRIX -Invalid matrix (not invertible) o CairoStatus::INVALID_STATUS -Invalid value for an input CairoStatus> o CairoStatus::NULL_POINTER -Null pointer o CairoStatus::INVALID_STRING -Input string not valid UTF-8 string o CairoStatus::INVALID_PATH_DATA -Input path data not valid o CairoStatus::READ_ERROR -Error while reading from input stream o CairoStatus::WRITE_ERROR -Error while writing to output stream o CairoStatus::SURFACE_FINISHED -Target surface has been finished o CairoStatus::SURFACE_TYPE_MISMATCH -The surface type is not appropriate for the operation o CairoStatus::PATTERN_TYPE_MISMATCH -The pattern type is not appropriate for the operation o CairoStatus::INVALID_CONTENT -Invalid value for an input CairoContent o CairoStatus::INVALID_FORMAT -Invalid value for an input CairoFormat o CairoStatus::INVALID_VISUAL -Invalid value for an input Visual o CairoStatus::FILE_NOT_FOUND -File not found o CairoStatus::INVALID_DASH -Invalid value for a dash setting o CairoStatus::INVALID_DSC_COMMENT -Invalid value for a DSC comment o CairoStatus::INVALID_INDEX -Invalid index passed to getter o CairoStatus::CLIP_NOT_REPRESENTABLE -Clip region not representable in desired format o CairoStatus::TEMP_FILE_ERROR -Error creating or writing to a temporary file o CairoStatus::INVALID_STRIDE -Invalid value for CairoStride PHP Documentation Group CAIROSTATUS(3)

Check Out this Related Man Page

EVENTHTTPREQUEST(3)							 1						       EVENTHTTPREQUEST(3)

The EventHttpRequest class

INTRODUCTION
Represents an HTTP request. CLASS SYNOPSIS
EventHttpRequest EventHttpRequest Constants o const integer$EventHttpRequest::CMD_GET1 o const integer$EventHttpRequest::CMD_POST2 o const integer$EventHttpRequest::CMD_HEAD4 o const integer$EventHttpRequest::CMD_PUT8 o const integer$EventHttpRequest::CMD_DELETE16 o const integer$EventHttpRequest::CMD_OPTIONS32 o const integer$EventHttpRequest::CMD_TRACE64 o const integer$EventHttpRequest::CMD_CONNECT128 o const integer$EventHttpRequest::CMD_PATCH256 o const integer$EventHttpRequest::INPUT_HEADER1 o const integer$EventHttpRequest::OUTPUT_HEADER2 Methods o public bool EventHttpRequest::addHeader (string $key, string $value, int $type) o public void EventHttpRequest::cancel (void ) o public void EventHttpRequest::clearHeaders (void ) o public void EventHttpRequest::closeConnection (void ) o public EventHttpRequest::__construct NULL (callable $callback, [mixed $data]) o public void EventHttpRequest::findHeader (string $key, string $type) o public void EventHttpRequest::free (void ) o public EventBufferEvent EventHttpRequest::closeConnection (void ) o public void EventHttpRequest::getCommand (void ) o public EventHttpConnection EventHttpRequest::closeConnection (void ) o public string EventHttpRequest::getHost (void ) o public EventBuffer EventHttpRequest::getInputBuffer (void ) o public array EventHttpRequest::getInputHeaders (void ) o public EventBuffer EventHttpRequest::getOutputBuffer (void ) o public void EventHttpRequest::getOutputHeaders (void ) o public int EventHttpRequest::getResponseCode (void ) o public string EventHttpRequest::getUri (void ) o public void EventHttpRequest::removeHeader (string $key, string $type) o public void EventHttpRequest::sendError NULL (int $error, [string $reason]) o public void EventHttpRequest::sendReply (int $code, string $reason, [EventBuffer $buf]) o public void EventHttpRequest::sendReplyChunk (EventBuffer $buf) o public void EventHttpRequest::sendReplyEnd (void ) o public void EventHttpRequest::sendReplyStart (int $code, string $reason) PREDEFINED CONSTANTS
o EventHttpRequest::CMD_GET - GET method(command) o EventHttpRequest::CMD_POST - POST method(command) o EventHttpRequest::CMD_HEAD - HEAD method(command) o EventHttpRequest::CMD_PUT - PUT method(command) o EventHttpRequest::CMD_DELETE - DELETE command(method) o EventHttpRequest::CMD_OPTIONS - OPTIONS method(command) o EventHttpRequest::CMD_TRACE - TRACE method(command) o EventHttpRequest::CMD_CONNECT - CONNECT method(command) o EventHttpRequest::CMD_PATCH - PATCH method(command) o EventHttpRequest::INPUT_HEADER - Request input header type. o EventHttpRequest::OUTPUT_HEADER - Request output header type. PHP Documentation Group EVENTHTTPREQUEST(3)
Man Page