SYMBOL INDEX (30 symbols across 7 files) FILE: examples/c/main.c function handler (line 4) | void handler(ResponseWriterPtr w, Request *req) function main (line 20) | int main() FILE: examples/python/gohttp/__init__.py class ResponseWriter (line 10) | class ResponseWriter: method __init__ (line 11) | def __init__(self, w): method write (line 14) | def write(self, body): method set_status (line 19) | def set_status(self, code): class Request (line 23) | class Request: method __init__ (line 24) | def __init__(self, req): method method (line 28) | def method(self): method host (line 32) | def host(self): method url (line 36) | def url(self): method body (line 40) | def body(self): method headers (line 44) | def headers(self): method __repr__ (line 47) | def __repr__(self): function route (line 51) | def route(pattern, fn=None): function run (line 76) | def run(host='', port=5000): function shutdown (line 81) | def shutdown(): FILE: examples/python/gohttp/__main__.py function index (line 5) | def index(w, req): FILE: gohttplib.c function Call_HandleFunc (line 3) | void Call_HandleFunc(ResponseWriterPtr w, Request *req, FuncPtr *fn) { FILE: gohttplib.go function ListenAndServe (line 33) | func ListenAndServe(caddr *C.char) { function Shutdown (line 40) | func Shutdown() { function HandleFunc (line 45) | func HandleFunc(cpattern *C.char, cfn *C.FuncPtr) { function main (line 82) | func main() {} FILE: ptrproxy.go function PtrProxy (line 12) | func PtrProxy() *ptrProxy { type ptrProxy (line 18) | type ptrProxy struct method Ref (line 26) | func (p *ptrProxy) Ref(ptr unsafe.Pointer) C.uint { method Deref (line 36) | func (p *ptrProxy) Deref(id C.uint) (unsafe.Pointer, bool) { method Free (line 44) | func (p *ptrProxy) Free(id C.uint) { FILE: responsewriter.go function ResponseWriter_Write (line 11) | func ResponseWriter_Write(wPtr C.uint, cbuf *C.char, length C.int) C.int { function ResponseWriter_WriteHeader (line 27) | func ResponseWriter_WriteHeader(wPtr C.uint, header C.int) {