Searched refs:cookie (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_cookie.rb23 cookie = CGI::Cookie.new('name1', 'val1', '&<>"', @str1)
24 assert_equal('name1', cookie.name)
25 assert_equal(['val1', '&<>"', @str1], cookie.value)
26 assert_nil(cookie.domain)
27 assert_nil(cookie.expires)
28 assert_equal('', cookie.path)
29 assert_equal(false, cookie.secure)
30 assert_equal("name1=val1&%26%3C%3E%22&%E3%82%86%E3%82%93%E3%82%86%E3%82%93; path=", cookie.to_s)
38 cookie = CGI::Cookie.new('name'=>'name1',
45 assert_equal('name1', cookie
[all...]
/macosx-10.10.1/file-46/file/python/
H A Dpy_magic.h36 magic_t cookie; member in struct:__anon8601
/macosx-10.10.1/ruby-106/ruby/lib/webrick/
H A Dcookie.rb2 # cookie.rb -- Cookie class
9 # $IPR: cookie.rb,v 1.16 2002/09/21 12:23:35 gotoyuzo Exp $
22 # The cookie name
27 # The cookie value
32 # The cookie version
37 # The cookie domain
41 # The cookie path
46 # Is this a secure cookie?
51 # The cookie comment
56 # The maximum age of the cookie
[all...]
/macosx-10.10.1/ruby-106/ruby/test/webrick/
H A Dtest_cookie.rb2 require "webrick/cookie"
6 cookie = WEBrick::Cookie.new("foo","bar")
7 assert_equal("foo", cookie.name)
8 assert_equal("bar", cookie.value)
9 assert_equal("foo=bar", cookie.to_s)
13 cookie = WEBrick::Cookie.new("foo","bar")
15 cookie.max_age = t
16 assert_match(t.to_s, cookie.to_s)
18 cookie = WEBrick::Cookie.new("foo","bar")
20 cookie
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCookieStorageContentView.js35 WebInspector.CookieStorageContentView.StyleClassName = "cookie-storage";
62 saveToCookie: function(cookie)
64 cookie.type = WebInspector.ContentViewCookieType.CookieStorage;
65 cookie.host = this.representedObject.host;
129 for (var cookie of this._cookies) {
132 "name": cookie.name,
133 "value": cookie.value,
134 "domain": cookie.domain || "",
135 "path": cookie.path || "",
137 "size": Number.bytesToString(cookie
233 var cookie = node.cookie; variable
[all...]
H A DCookieStorageContentView.css26 .content-view.cookie-storage > .data-grid {
H A DCookieIcon.css26 .cookie-icon .icon {
H A DDatabaseTableContentView.js53 saveToCookie: function(cookie)
55 cookie.type = WebInspector.ContentViewCookieType.DatabaseTable;
56 cookie.host = this.representedObject.host;
57 cookie.name = this.representedObject.name;
58 cookie.database = this.representedObject.database.name;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCookieStorageObject.js31 WebInspector.CookieStorageObject.TypeIdentifier = "cookie-storage";
32 WebInspector.CookieStorageObject.CookieHostCookieKey = "cookie-storage-host";
42 saveIdentityToCookie: function(cookie)
44 cookie[WebInspector.CookieStorageObject.CookieHostCookieKey] = this.host;
H A DSourceCodeTimeline.js74 saveIdentityToCookie: function(cookie)
76 cookie[WebInspector.SourceCodeTimeline.SourceCodeURLCookieKey] = this._sourceCode.url ? this._sourceCode.url.hash : null;
77 cookie[WebInspector.SourceCodeTimeline.SourceCodeLocationLineCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.lineNumber : null;
78 cookie[WebInspector.SourceCodeTimeline.SourceCodeLocationColumnCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.columnNumber : null;
79 cookie[WebInspector.SourceCodeTimeline.RecordTypeCookieKey] = this._recordType || null;
80 cookie[WebInspector.SourceCodeTimeline.RecordEventTypeCookieKey] = this._recordEventType || null;
H A DApplicationCacheFrame.js67 saveIdentityToCookie: function(cookie)
69 cookie[WebInspector.ApplicationCacheFrame.FrameURLCookieKey] = this.frame.url;
70 cookie[WebInspector.ApplicationCacheFrame.ManifestURLCookieKey] = this.manifest.manifestURL;
H A DIndexedDatabase.js75 saveIdentityToCookie: function(cookie)
77 cookie[WebInspector.IndexedDatabase.NameCookieKey] = this._name;
78 cookie[WebInspector.IndexedDatabase.HostCookieKey] = this._host;
H A DIndexedDatabaseObjectStore.js75 saveIdentityToCookie: function(cookie)
77 cookie[WebInspector.IndexedDatabaseObjectStore.NameCookieKey] = this._name;
78 cookie[WebInspector.IndexedDatabaseObjectStore.KeyPathCookieKey] = this._keyPath;
H A DIndexedDatabaseObjectStoreIndex.js72 saveIdentityToCookie: function(cookie)
74 cookie[WebInspector.IndexedDatabaseObjectStoreIndex.NameCookieKey] = this._name;
75 cookie[WebInspector.IndexedDatabaseObjectStoreIndex.KeyPathCookieKey] = this._keyPath;
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dkpi_interfacefilter.h66 @param cookie The cookie specified when this filter was attached.
84 typedef errno_t (*iff_input_func)(void *cookie, ifnet_t interface,
94 @param cookie The cookie specified when this filter was attached.
107 typedef errno_t (*iff_output_func)(void *cookie, ifnet_t interface,
117 @param cookie The cookie specified when this filter was attached.
121 typedef void (*iff_event_func)(void *cookie, ifnet_t interface,
135 @param cookie Th
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dldapsync.c36 struct berval *cookie,
59 ber_str2bv_x( cookiestr, len, 1, cookie,
73 cookie->bv_val = slap_sl_malloc( len, op ? op->o_tmpmemctx : NULL );
75 len = sprintf( cookie->bv_val, "rid=%03d,", rid );
76 ptr = cookie->bv_val + len;
87 cookie->bv_len = ptr - cookie->bv_val;
93 struct sync_cookie *cookie,
97 if ( cookie == NULL )
100 if ( cookie
34 slap_compose_sync_cookie( Operation *op, struct berval *cookie, BerVarray csn, int rid, int sid ) argument
92 slap_sync_cookie_free( struct sync_cookie *cookie, int free_cookie ) argument
254 slap_parse_sync_cookie( struct sync_cookie *cookie, void *memctx ) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/btree/
H A Dbt_conv.c24 __bam_pgin(dbp, pg, pp, cookie)
28 DBT *cookie;
33 pginfo = (DB_PGINFO *)cookie->data;
50 __bam_pgout(dbp, pg, pp, cookie)
54 DBT *cookie;
59 pginfo = (DB_PGINFO *)cookie->data;
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dkpi_socketfilter.h162 this attachment and use the cookie to track it. This filter is
167 @param cookie Used to allow the socket filter to set the cookie for
173 typedef errno_t (*sf_attach_func)(void **cookie, socket_t so);
182 @param cookie Cookie value specified when the filter attach was
188 typedef void (*sf_detach_func)(void *cookie, socket_t so);
195 @param cookie Cookie value specified when the filter attach was
201 typedef void (*sf_notify_func)(void *cookie, socket_t so, sflt_event_t event,
213 @param cookie Cookie value specified when the filter attach was
222 typedef int (*sf_getpeername_func)(void *cookie, socket_
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/devtools/
H A Dcoserv.tcl57 foreach {snitsrc commsrc main cookie} $argv break
65 ::comm::comm send $main [list ::coserv::ready $cookie [::comm::comm self]]
82 proc ::coserv::ready {cookie id} {
83 #puts "Sub server @ $id\t\[$cookie\]"
91 proc ::coserv::start {cookie} {
101 $snitsrc $commsrc [::comm::comm self] $cookie &
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/librewrite/
H A Dsession.c77 const void *cookie
84 assert( cookie != NULL );
90 tmp.ls_cookie = ( void * )cookie;
105 session->ls_cookie = ( void * )cookie;
147 const void *cookie
153 assert( cookie != NULL );
155 tmp.ls_cookie = ( void * )cookie;
190 const void *cookie,
200 assert( cookie != NULL );
204 session = rewrite_session_find( info, cookie );
188 rewrite_session_var_set_f( struct rewrite_info *info, const void *cookie, const char *name, const char *value, int flags ) argument
250 rewrite_session_var_get( struct rewrite_info *info, const void *cookie, const char *name, struct berval *value ) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Cookies/soup/
H A DWebKitSoupCookieJarSqlite.cpp110 SoupCookie* cookie = soup_cookie_new(query.getColumnText(ColumnName).utf8().data(), query.getColumnText(ColumnValue).utf8().data(), local
114 soup_cookie_set_secure(cookie, TRUE);
116 soup_cookie_set_http_only(cookie, TRUE);
118 soup_cookie_jar_add_cookie(jar, cookie);
126 static bool webkitSoupCookieJarSqliteInsertCookie(WebKitSoupCookieJarSqlite* sqliteJar, SoupCookie* cookie) argument
135 query.bindText(1, String::fromUTF8(cookie->name));
136 query.bindText(2, String::fromUTF8(cookie->value));
137 query.bindText(3, String::fromUTF8(cookie->domain));
138 query.bindText(4, String::fromUTF8(cookie->path));
139 query.bindInt(5, static_cast<int64_t>(soup_date_to_time_t(cookie
150 webkitSoupCookieJarSqliteDeleteCookie(WebKitSoupCookieJarSqlite* sqliteJar, SoupCookie* cookie) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/qam/
H A Dqam_conv.c56 __qam_pgin_out(env, pg, pp, cookie)
60 DBT *cookie;
66 pginfo = (DB_PGINFO *)cookie->data;
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dstdio.c53 __sread(cookie, buf, n)
54 void *cookie;
58 FILE *fp = cookie;
64 __swrite(cookie, buf, n)
65 void *cookie;
69 FILE *fp = cookie;
75 __sseek(cookie, offset, whence)
76 void *cookie;
80 FILE *fp = cookie;
86 __sclose(cookie)
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dpagectrl.c33 cookie (IN) Opaque structure used by the server to track its
48 cookie OCTET STRING }
56 struct berval *cookie,
77 if ( cookie == NULL ) {
78 cookie = &null_cookie;
87 tag = ber_printf( ber, "{iO}", pagesize, cookie );
113 cookie (IN) Opaque structure used by the server to track its
131 cookie OCTET STRING }
139 struct berval *cookie,
151 pagesize, cookie,
53 ldap_create_page_control_value( LDAP *ld, ber_int_t pagesize, struct berval *cookie, struct berval *value ) argument
136 ldap_create_page_control( LDAP *ld, ber_int_t pagesize, struct berval *cookie, int iscritical, LDAPControl **ctrlp ) argument
240 struct berval cookie; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/hash/
H A Dhash_conv.c24 __ham_pgin(dbp, pg, pp, cookie)
28 DBT *cookie;
34 pginfo = (DB_PGINFO *)cookie->data;
62 __ham_pgout(dbp, pg, pp, cookie)
66 DBT *cookie;
71 pginfo = (DB_PGINFO *)cookie->data;

Completed in 283 milliseconds

1234567891011>>