Home
last modified time | relevance | path

Searched refs:cgi (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/external/dnsmasq/contrib/dynamic-dnsmasq/
Ddynamic-dnsmasq.pl106 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/chromium-trace/catapult/third_party/Paste/paste/util/
Dquoting.py4 import cgi
25 return cgi.escape(v, 1)
28 return cgi.escape(v, 1)
30 return cgi.escape(v.encode(encoding), 1)
33 return cgi.escape(six.text_type(v), 1)
35 return cgi.escape(six.text_type(v).encode(encoding), 1)
/external/autotest/client/common_lib/cros/
Dinteractive_xmlrpc_server.py7 import cgi
105 cgi.escape(title),
106 cgi.escape(onclick)))
164 html = '<div id="%s"></div>' % cgi.escape(name)
180 item_html = '"<div id=\\"%s\\"></div>"' % cgi.escape(item_name)
184 cgi.escape(list_name),
206 cgi.escape(item_name),
/external/opencv3/3rdparty/libtiff/
DChangeLog53 http://bugzilla.maptools.org/show_bug.cgi?id=2379
57 http://bugzilla.maptools.org/show_bug.cgi?id=2341
60 http://bugzilla.maptools.org/show_bug.cgi?id=2386
74 http://bugzilla.maptools.org/show_bug.cgi?id=2398
218 http://bugzilla.maptools.org/show_bug.cgi?id=2315
221 http://bugzilla.maptools.org/show_bug.cgi?id=2316
268 http://bugzilla.maptools.org/show_bug.cgi?id=2300
295 http://bugzilla.maptools.org/show_bug.cgi?id=2295
324 http://bugzilla.maptools.org/show_bug.cgi?id=2293
361 http://bugzilla.maptools.org/show_bug.cgi?id=2266
[all …]
/external/chromium-trace/catapult/third_party/WebOb/webob/
Dcompat.py131 from cgi import escape
137 import cgi
138 from cgi import FieldStorage as _cgi_FieldStorage
146 if not cgi.valid_boundary(ib):
151 query = cgi.urllib.parse.parse_qsl(
156 self.list.append(cgi.MiniFieldStorage(key, value))
172 parser = cgi.FeedParser()
194 from cgi import FieldStorage as cgi_FieldStorage
/external/autotest/server/site_tests/bluetooth_Sanity_Discovery/
Dbluetooth_Sanity_Discovery.py5 import cgi
59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
105 (cgi.escape(self.name),
106 cgi.escape(self.address))))
/external/autotest/server/site_tests/bluetooth_Sanity_LEDiscovery/
Dbluetooth_Sanity_LEDiscovery.py5 import cgi
59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
106 (cgi.escape(self.name),
107 cgi.escape(self.address))))
/external/libxml2/test/URI/
Duri.data13 /root.cgi#OK
14 /root.cgi?OK
15 /root.cgi?OK#OK2
/external/selinux/policycoreutils/sepolicy/sepolicy/help/
Dfile_equiv.txt9 …s handed /srv/www/cgi-bin/myscript.cgi, it substitutes /var/www for /svr/www and looks up the cont…
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/gettingstarted/
Dhandlingforms.rst14 import cgi
34 self.response.out.write(cgi.escape(self.request.get('content')))
61 Before displaying it back to the user, it uses ``cgi.escape()`` to escape
62 HTML special characters to their character entity equivalents. ``cgi`` is a
63 …tandard Python library; see `the documentation for cgi <http://www.python.org/doc/2.5.2/lib/module…
/external/curl/docs/
DKNOWN_BUGS10 http://curl.haxx.se/bug/view.cgi?id=1366
13 heap corruption and crash. http://curl.haxx.se/bug/view.cgi?id=1411
24 http://curl.haxx.se/bug/view.cgi?id=1294
35 http://curl.haxx.se/bug/view.cgi?id=1213
43 http://curl.haxx.se/bug/view.cgi?id=1222
49 http://curl.haxx.se/bug/view.cgi?id=1169
53 http://curl.haxx.se/bug/view.cgi?id=1065
59 http://curl.haxx.se/bug/view.cgi?id=1116
64 http://curl.haxx.se/bug/view.cgi?id=1063
75 http://curl.haxx.se/bug/view.cgi?id=896
[all …]
/external/libxml2/result/URI/
Duri.data13 http://foo.com/root.cgi#OK
14 http://foo.com/root.cgi?OK
15 http://foo.com/root.cgi?OK#OK2
/external/autotest/apache/conf/
Dcgi-directives1 AddHandler cgi-script .cgi
/external/autotest/server/site_tests/bluetooth_Sanity_Discoverable/
Dbluetooth_Sanity_Discoverable.py5 import cgi
74 (cgi.escape(self.adapter['Alias']),
75 cgi.escape(self.adapter['Address']))))
/external/chromium-trace/catapult/third_party/Paste/tests/cgiapp_data/
Dform.cgi3 import cgi
8 form = cgi.FieldStorage()
/external/curl/tests/data/
Dtest4515 Location: data.cgi?moo=http://&/450002
34 Location: data.cgi?moo=http://&/450002
70 GET /want/data.cgi?moo=http://&/450002 HTTP/1.1
/external/chromium-trace/catapult/third_party/Paste/paste/debug/
Dwatchthreads.py6 import cgi
291 key=cgi.escape(str(key)),
292 value=cgi.escape(str(value))))
296 key=cgi.escape(str(key)),
/external/chromium-trace/catapult/third_party/Paste/paste/
Durlmap.py9 import cgi
117 extra += '\nSCRIPT_NAME: %r' % cgi.escape(environ.get('SCRIPT_NAME'))
118 extra += '\nPATH_INFO: %r' % cgi.escape(environ.get('PATH_INFO'))
119 extra += '\nHTTP_HOST: %r' % cgi.escape(environ.get('HTTP_HOST'))
122 comment=cgi.escape(extra)).wsgi_application
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
Dopen_id.py58 import cgi
67 qs = cgi.escape(s, 1)
204 message = fmt % (cgi.escape(openid_url),)
249 message = fmt % (cgi.escape(openid_url),)
270 message = fmt % (cgi.escape(openid_url),)
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPAccessNetworkInfo.java100 public void setCGI3GPP(String cgi) throws ParseException { in setCGI3GPP() argument
102 if (cgi == null) in setCGI3GPP()
107 setParameter(ParameterNamesIms.CGI_3GPP, cgi); in setCGI3GPP()
/external/autotest/tko/
Djsonp_fetcher.cgi3 import cgi, traceback, urllib2
16 form = cgi.FieldStorage(keep_blank_values=True)
Dsave_query.cgi3 import os, cgi, cgitb, time, urllib
7 form = cgi.FieldStorage()
Dmachine_test_attribute_graph.cgi5 import cgi, cgitb, os, sys, re, subprocess
16 form = cgi.FieldStorage()
/external/bison/m4/
Dmemchr.m428 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737
29 # http://sourceware.org/bugzilla/show_bug.cgi?id=10162
/external/autotest/site_utils/admin/apache/
Dapache2.conf301 AddHandler cgi-script .cgi

12345678910>>...16