HomeSort by relevance Sort by last modified time
    Searched refs:cgi (Results 1 - 25 of 39) sorted by null

1 2

  /external/webkit/WebKitTools/mangleme/
Makefile 12 all: $(OUTDIR)/mangle.cgi $(OUTDIR)/remangle.cgi
14 $(OUTDIR)/%.cgi: %.cgi.c
16 $(CC) $(CFLAGS) $< -o $(OUTDIR)/$*.cgi
  /external/webkit/WebKitTools/iExploder/htdocs/
iexploder.cgi 26 require 'cgi';
34 cgi = CGI.new("html4");
36 ie.test_num = cgi.params['test'][0].to_i
37 ie.subtest_num = cgi.params['subtest'][0].to_i || 0
38 ie.random_mode = cgi.params['random'][0]
39 ie.lookup_mode = cgi.params['lookup'][0]
40 ie.stop_num = cgi.params['stop'][0].to_i || 0
43 cgi.out('type' => 'text/html') do
  /external/clearsilver/cgi/
static.c 12 /* static.cgi
28 CGI *cgi; local
33 /* CGI works by passing information from the server to the CGI program via
40 /* The ClearSilver cgi toolkit accesses the CGI environment through a
42 * fake the CGI environment, such as FastCGI, mod_python, PyApache, or even
44 * cgiwrap_init_std just sets up for the default CGI environment using the
48 /* cgi_init creates a CGI struct, and parses the CGI environment variables.
    [all...]
rfc2388.c 28 #include "cgi.h"
125 static NEOERR * _read_line (CGI *cgi, char **s, int *l, int *done)
131 if (cgi->buf == NULL)
133 cgi->buflen = 4096;
134 cgi->buf = (char *) malloc (sizeof(char) * cgi->buflen);
135 if (cgi->buf == NULL)
136 return nerr_raise (NERR_NOMEM, "Unable to allocate cgi buf");
138 if (cgi->unget
    [all...]
cgi.h 26 /* HACK: Set this value if you want to treat empty CGI Query variables as
31 typedef struct _cgi CGI;
33 typedef int (*UPLOAD_CB)(CGI *, int nread, int expected);
34 typedef NEOERR* (*CGI_PARSE_CB)(CGI *, char *method, char *ctype, void *rock);
51 HDF *hdf; /* the HDF dataset associated with this CGI */
89 * Function: cgi_init - Initialize ClearSilver CGI environment
90 * Description: cgi_init initializes the ClearSilver CGI environment,
92 * the standard CGI environment variables into that dataset,
97 * on the CGI program. These variables have to be
101 * Input: cgi - a pointer to a CGI pointe
    [all...]
fcgi_hello.c 31 CGI *cgi = NULL; local
37 cgi_init(&cgi, hdf);
49 hdf_read_file(cgi->hdf, "common.hdf");
50 hdf_read_file(cgi->hdf, "hello_world.hdf");
52 cgi_display(cgi, "hello_world.cs");
55 cgi_destroy(&cgi);
Makefile 10 CGI_SRC = cgiwrap.c cgi.c html.c date.c rfc2388.c
13 STATIC_EXE = cs_static.cgi
16 STATIC_CSO = $(STATIC_EXE:%.cgi=%.cso)
42 $(NEOTONIC_ROOT)/mkinstalldirs $(DESTDIR)$(cs_includedir)/cgi
43 $(INSTALL) -m 644 cgi.h $(DESTDIR)$(cs_includedir)/cgi
44 $(INSTALL) -m 644 cgiwrap.h $(DESTDIR)$(cs_includedir)/cgi
45 $(INSTALL) -m 644 date.h $(DESTDIR)$(cs_includedir)/cgi
46 $(INSTALL) -m 644 html.h $(DESTDIR)$(cs_includedir)/cgi
cgi.c 29 #include "cgi.h"
218 static NEOERR *_add_cgi_env_var (CGI *cgi, char *env, char *name)
227 err = hdf_set_buf (cgi->hdf, name, s);
288 static NEOERR *_parse_query (CGI *cgi, char *query)
325 if (!(cgi->ignore_empty_form_vars && (*v == '\0')))
330 obj = hdf_get_obj (cgi->hdf, buf);
357 err = hdf_set_value (cgi->hdf, buf, v);
376 static NEOERR *_parse_post_form (CGI *cgi
    [all...]
Android.mk 6 cgi.c \
  /external/clearsilver/python/
static.py 7 sys.stderr.write("CGI: %s\n" % s)
22 cgi = neo_cgi.CGI("")
25 hdf_file = cgi.hdf.getValue("CGI.PathTranslated", "")
27 cgi.error ("No PATH_TRANSLATED var")
32 cgi.hdf.setValue ("hdf.loadpaths.0", hdf_file[:x])
34 cgi.hdf.readFile(hdf_file)
35 content = cgi.hdf.getValue("Content", "")
37 cgi.error ("No Content var specified in HDF file %s" % hdf_file
    [all...]
upload.py 7 sys.stderr.write("CGI: %s\n" % s)
22 cgi = neo_cgi.CGI("")
25 fp = cgi.filehandle("file")
38 cgi.error (s)
neo_cgi.c 25 CGI *cgi; member in struct:_CGIObject
56 if (ho->cgi)
58 cgi_destroy (&(ho->cgi));
63 PyObject * p_cgi_to_object (CGI *data)
76 ho->cgi = data;
86 CGI *cgi = NULL; local
89 err = cgi_init (&cgi, NULL);
91 return p_cgi_to_object (cgi);
96 CGI *cgi = ((CGIObject *) self)->cgi; local
153 CGI *cgi = ((CGIObject *) self)->cgi; local
174 CGI *cgi = ((CGIObject *) self)->cgi; local
189 CGI *cgi = ((CGIObject *) self)->cgi; local
206 CGI *cgi = ((CGIObject *) self)->cgi; local
221 CGI *cgi = ((CGIObject *) self)->cgi; local
236 CGI *cgi = ((CGIObject *) self)->cgi; local
259 CGI *cgi = ((CGIObject *) self)->cgi; local
277 CGI *cgi = ((CGIObject *) self)->cgi; local
292 CGI *cgi = ((CGIObject *) self)->cgi; local
310 CGI *cgi = ((CGIObject *) self)->cgi; local
    [all...]
  /external/clearsilver/java-jni/
j_neo_cgi.c 2 #include "CGI.h"
9 #include "cgi/cgi.h"
10 #include "cgi/cgiwrap.h"
11 #include "cgi/date.h"
12 #include "cgi/html.h"
21 CGI *cgi = NULL; local
29 err = cgi_init(&cgi,NULL);
31 return (jint) cgi;
37 CGI *cgi = (CGI *)((*env)->GetIntField(env,obj,_cgiobjFldID)); local
    [all...]
  /external/clearsilver/imd/
imd.c 569 NEOERR *export_image(CGI *cgi, char *prefix, char *path, char *file)
590 err = hdf_set_value (cgi->hdf, prefix, file);
601 err = hdf_set_value (cgi->hdf, buf, num);
605 err = hdf_set_value (cgi->hdf, buf, num);
613 err = hdf_set_value (cgi->hdf, buf, ipath);
619 NEOERR *scale_images (CGI *cgi, char *prefix, int width, int height, int force)
627 obj = hdf_get_obj (cgi->hdf, prefix);
679 static NEOERR *export_album_path(CGI *cgi, char *album, char *prefix
1075 CGI *cgi; local
    [all...]
Makefile 9 IMD_EXE = imd.cgi
  /build/tools/
compare_fileslist.py 18 import cgi, os, string, sys namespace
86 print " <td class='fn'>%s</td>" % cgi.escape(combo)
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0])
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 106 my %cgi;
115 $cgi{(split '=', $element)[0]} = (split '=', $element)[1];
118 unless ( defined $cgi{'hostname'} ) {
122 if ( !exists $cgi{'myip'} ) {
123 $cgi{'myip'} = $client->peerhost();
126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) {
127 print_http_response($client, $cgi{'myip'}, "good");
128 update_dns(\%cgi);
  /external/webkit/WebKitTools/simplejson/
jsonfilter.py 2 import cgi namespace
22 jsonp = cgi.parse_qs(environ.get('QUERY_STRING', '')).get('jsonp')
  /packages/experimental/procstatlog/
procstatreport.py 17 import cgi namespace
155 "filename": cgi.escape(log_filename),
156 "user": cgi.escape(os.environ.get("USER", "unknown")),
157 "date": cgi.escape(time.ctime()),
200 "id": cgi.escape("total_cpu"),
242 "id": cgi.escape("cpu_speed"),
274 "id": cgi.escape("context_switches"),
338 "id": cgi.escape("total_faults"),
369 "id": cgi.escape("binder_calls"),
421 "id": cgi.escape("net%d" % num)
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla_unittest.py 94 'url' : "https://bugs.webkit.org/attachment.cgi?id=33721",
108 self.assertEquals(12345, parse_bug_id("http://bugs.webkit.org/show_bug.cgi?id=12345"))
115 self.assertEquals(None, parse_bug_id("http://bugs.webkit.org/show_bug.cgi?ctype=xml&id=12345"))
191 'url' : "https://bugs.webkit.org/attachment.cgi?id=45548",
230 <link rel="Up" href="show_bug.cgi?id=27314">
267 <td><a href="show_bug.cgi?id=30015">30015: text-transform:capitalize is failing in CSS2.1 test suite</a></td>
268 <td><a href="attachment.cgi?id=40511&amp;action=review">
275 <td><a href="show_bug.cgi?id=26304">26304: [GTK] Add controls for playing html5 video.</a></td>
276 <td><a href="attachment.cgi?id=40722&amp;action=review">
283 <td><a href="show_bug.cgi?id=26304">26304: [GTK] Add controls for playing html5 video.</a></td
    [all...]
  /external/clearsilver/ports/rpm/
clearsilver.spec 96 clearsilver CGI kit and templating system.
134 loading ClearSilver CGI's as shared libraries.
163 %{__prefix}/include/ClearSilver/cgi/cgi.h
164 %{__prefix}/include/ClearSilver/cgi/cgiwrap.h
165 %{__prefix}/include/ClearSilver/cgi/date.h
166 %{__prefix}/include/ClearSilver/cgi/html.h
189 %{__prefix}/bin/static.cgi
  /external/clearsilver/csharp/
README 36 - open up access to other parts of cgi and util
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
timeout-clear-watch.js 1 description("Tests that when a watch times out and is cleared from the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
permission-denied-already-clear-watch.js 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
  /external/icu4c/samples/
readme.txt 55 or through WebCVS at http://dev.icu-project.org/cgi-bin/viewcvs.cgi/icuapps/

Completed in 1271 milliseconds

1 2