Searched refs:cookie (Results 26 - 50 of 356) sorted by relevance

1234567891011>>

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
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;
H A DDatabaseTableObject.js50 saveIdentityToCookie: function(cookie)
52 cookie[WebInspector.DatabaseTableObject.NameCookieKey] = this.name;
H A DBackForwardEntry.js27 WebInspector.BackForwardEntry = function(contentView, cookie)
32 this._cookie = cookie || {};
49 get cookie()
77 this.contentView.restoreFromCookie(this.cookie);
H A DTimelineRecord.js141 saveIdentityToCookie: function(cookie)
143 cookie[WebInspector.TimelineRecord.SourceCodeURLCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.sourceCode.url ? this._sourceCodeLocation.sourceCode.url.hash : null : null;
144 cookie[WebInspector.TimelineRecord.SourceCodeLocationLineCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.lineNumber : null;
145 cookie[WebInspector.TimelineRecord.SourceCodeLocationColumnCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.columnNumber : null;
146 cookie[WebInspector.TimelineRecord.TypeCookieKey] = this._type || null;
/macosx-10.10/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;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/
H A Drewrite.h178 * Same as above; the cookie relates the rewrite to a session
185 const void *cookie,
195 const void *cookie
204 const void *cookie,
210 #define rewrite_session_var_set(info, cookie, name, value) \
211 rewrite_session_var_set_f((info), (cookie), (name), (value), \
220 const void *cookie
/macosx-10.10/Librpcsvc-24/
H A Dnlm_prot.x53 netobj cookie;
58 netobj cookie;
72 netobj cookie;
81 netobj cookie;
88 netobj cookie;
94 netobj cookie;
128 netobj cookie;
134 netobj cookie;
197 netobj cookie;
202 netobj cookie;
[all...]
/macosx-10.10/NFS-82/rpc.lockd/
H A Dlock_proc.c587 * Copy the cookie from the argument into the result. Note that this
593 res.cookie = arg->cookie;
626 res.cookie = arg->cookie;
668 arg4.cookie = arg->cookie;
677 /* copy cookie from arg to result. See comment in nlm_test_1() */
678 res.cookie = arg->cookie;
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dcoshell.bash37 local cookie=$RANDOM
49 coprocess print "printf 'coprocess-$cookie----\n%d\n' \$coprocess_rc"
57 *coprocess-$cookie----*)
58 ol="${ol%coprocess-$cookie----}"
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dkpi_ipfilter.h82 @param cookie The cookie specified when your filter was attached.
96 typedef errno_t (*ipf_input_func)(void *cookie, mbuf_t *data, int offset,
107 @param cookie The cookie specified when your filter was attached.
118 typedef errno_t (*ipf_output_func)(void *cookie, mbuf_t *data,
126 @param cookie The cookie specified when your filter was attached.
128 typedef void (*ipf_detach_func)(void *cookie);
134 @field cookie
142 void *cookie; member in struct:ipf_filter
[all...]
H A Dip_divert.h76 u_int16_t cookie; /* ipfw rule number */ member in struct:divert_tag
80 * Return the divert cookie associated with the mbuf; if any.
85 return ((struct divert_tag *)(mtag+1))->cookie;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DFrameContentView.js93 saveToCookie: function(cookie)
95 cookie.type = WebInspector.ContentViewCookieType.Resource;
96 cookie.subview = this._currentContentViewSetting.value;
98 cookie.url = this.representedObject.url;
101 restoreFromCookie: function(cookie)
103 var shownView = this._showContentViewForIdentifier(cookie.subview);
104 if ("lineNumber" in cookie && "columnNumber" in cookie)
105 this.showSourceCode(new WebInspector.SourceCodePosition(cookie.lineNumber, cookie
[all...]
H A DIndexedDatabaseObjectStoreContentView.js91 saveToCookie: function(cookie)
93 cookie.type = WebInspector.ContentViewCookieType.IndexedDatabaseObjectStore;
94 cookie.securityOrigin = this._objectStore.parentDatabase.securityOrigin;
95 cookie.databaseName = this._objectStore.parentDatabase.name;
96 cookie.objectStoreName = this._objectStore.name;
97 cookie.objectStoreIndexName = this._objectStoreIndex && this._objectStoreIndex.name;
H A DScriptContentView.js116 saveToCookie: function(cookie)
118 cookie.type = WebInspector.ContentViewCookieType.Resource;
119 cookie.url = this.representedObject.url;
122 restoreFromCookie: function(cookie)
124 if ("lineNumber" in cookie && "columnNumber" in cookie)
125 this.revealPosition(new WebInspector.SourceCodePosition(cookie.lineNumber, cookie.columnNumber));
/macosx-10.10/file-46/file/python/
H A Dpy_magic.c40 PyObject* new_magic_cookie_handle(magic_t cookie) argument
46 mch->cookie = cookie;
52 "Returns a magic cookie on success and None on failure.\n";
56 magic_t cookie; local
61 if(!(cookie = magic_open(flags))) {
62 PyErr_SetString(magic_error_obj, "failure initializing magic cookie");
66 return new_magic_cookie_handle(cookie);
75 magic_close(hnd->cookie);
90 message = magic_error(hnd->cookie);
[all...]
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/apple/
H A Dlmbench_bw_mem.c96 void rd(iter_t iterations, void *cookie);
97 void wr(iter_t iterations, void *cookie);
98 void rdwr(iter_t iterations, void *cookie);
99 void mcp(iter_t iterations, void *cookie);
100 void fwr(iter_t iterations, void *cookie);
101 void frd(iter_t iterations, void *cookie);
102 void fcp(iter_t iterations, void *cookie);
103 void loop_bzero(iter_t iterations, void *cookie);
104 void loop_bcopy(iter_t iterations, void *cookie);
105 void init_overhead(iter_t iterations, void *cookie);
148 init_overhead(iter_t iterations, void *cookie) argument
153 init_loop(iter_t iterations, void *cookie) argument
190 cleanup(iter_t iterations, void *cookie) argument
201 rd(iter_t iterations, void *cookie) argument
226 wr(iter_t iterations, void *cookie) argument
247 rdwr(iter_t iterations, void *cookie) argument
270 mcp(iter_t iterations, void *cookie) argument
295 fwr(iter_t iterations, void *cookie) argument
335 frd(iter_t iterations, void *cookie) argument
376 fcp(iter_t iterations, void *cookie) argument
415 loop_bzero(iter_t iterations, void *cookie) argument
427 loop_bcopy(iter_t iterations, void *cookie) argument
[all...]
/macosx-10.10/ruby-106/ruby/test/webrick/
H A Dwebrick.cgi20 res.body = req.cookies.inject(""){|result, cookie|
21 result << "%s=%s\n" % [cookie.name, cookie.value]
H A Dwebrick_long_filename.cgi20 res.body = req.cookies.inject(""){|result, cookie|
21 result << "%s=%s\n" % [cookie.name, cookie.value]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dntstat.c148 int (*nstat_gone)(nstat_provider_cookie_t cookie);
149 errno_t (*nstat_counts)(nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone);
152 errno_t (*nstat_copy_descriptor)(nstat_provider_cookie_t cookie, void *data, u_int32_t len);
153 void (*nstat_release)(nstat_provider_cookie_t cookie, boolean_t locked);
162 nstat_provider_cookie_t cookie; member in struct:nstat_src
255 static errno_t nstat_control_source_add(u_int64_t context, nstat_control_state *state, nstat_provider *provider, nstat_provider_cookie_t cookie);
421 nstat_provider_cookie_t cookie)
423 struct rtentry *rt = (struct rtentry*)cookie;
429 nstat_provider_cookie_t cookie,
433 struct rtentry *rt = (struct rtentry*)cookie;
420 nstat_route_gone( nstat_provider_cookie_t cookie) argument
428 nstat_route_counts( nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone) argument
463 nstat_route_release( nstat_provider_cookie_t cookie, __unused int locked) argument
570 nstat_route_copy_descriptor( nstat_provider_cookie_t cookie, void *data, u_int32_t len) argument
850 struct nstat_tucookie *cookie; local
898 nstat_tucookie_release_internal( struct nstat_tucookie *cookie, int inplock) argument
909 nstat_tucookie_release( struct nstat_tucookie *cookie) argument
916 nstat_tucookie_release_locked( struct nstat_tucookie *cookie) argument
1015 nstat_tcp_gone( nstat_provider_cookie_t cookie) argument
1029 nstat_tcp_counts( nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone) argument
1077 nstat_tcp_release( nstat_provider_cookie_t cookie, int locked) argument
1097 struct nstat_tucookie *cookie; local
1127 struct nstat_tucookie *cookie; local
1301 nstat_tcp_copy_descriptor( nstat_provider_cookie_t cookie, void *data, u_int32_t len) argument
1422 nstat_udp_gone( nstat_provider_cookie_t cookie) argument
1434 nstat_udp_counts( nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone) argument
1468 nstat_udp_release( nstat_provider_cookie_t cookie, int locked) argument
1483 struct nstat_tucookie *cookie; local
1518 struct nstat_tucookie *cookie; local
1549 nstat_udp_copy_descriptor( nstat_provider_cookie_t cookie, void *data, u_int32_t len) argument
1688 struct nstat_ifnet_cookie *cookie; local
1755 nstat_ifnet_gone( nstat_provider_cookie_t cookie) argument
1774 nstat_ifnet_counts( nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone) argument
1803 nstat_ifnet_release( nstat_provider_cookie_t cookie, __unused int locked) argument
1853 nstat_ifnet_copy_descriptor( nstat_provider_cookie_t cookie, void *data, u_int32_t len) argument
1944 nstat_sysinfo_cookie *cookie; local
1965 nstat_sysinfo_gone( __unused nstat_provider_cookie_t cookie) argument
1973 nstat_sysinfo_copy_descriptor( nstat_provider_cookie_t cookie, void *data, u_int32_t len) argument
1989 nstat_sysinfo_release( nstat_provider_cookie_t cookie, __unused boolean_t locked) argument
2570 nstat_provider_cookie_t cookie; local
2648 nstat_control_source_add( u_int64_t context, nstat_control_state *state, nstat_provider *provider, nstat_provider_cookie_t cookie) argument
[all...]
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dfunopen.c45 funopen(const void *cookie, argument
71 fp->_cookie = (void *)cookie;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dsets.h29 * also return the syntax or some "comparison cookie"
32 typedef BerVarray (SLAP_SET_GATHER)( SetCookie *cookie,
37 SetCookie *cookie, struct berval *filter,
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dsidebar.js14 * This script saves a per-browser/per-session cookie used to
16 * Once the browser is closed the cookie is deleted and the position
70 document.cookie = 'sidebar=collapsed';
83 document.cookie = 'sidebar=expanded';
132 if (!document.cookie)
134 var items = document.cookie.split(';');
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDTransactionClass.h121 static IOReturn _addElement (void * self, IOHIDElementCookie cookie);
122 static IOReturn _removeElement (void * self, IOHIDElementCookie cookie);
123 static Boolean _hasElement (void * self, IOHIDElementCookie cookie);
124 static IOReturn _setElementDefault(void * self, IOHIDElementCookie cookie, IOHIDEventStruct * valueEvent);
125 static IOReturn _getElementDefault(void * self, IOHIDElementCookie cookie, IOHIDEventStruct * valueEvent);
126 static IOReturn _setElementValue(void * self, IOHIDElementCookie cookie, IOHIDEventStruct * pEvent);
127 static IOReturn _getElementValue(void * self, IOHIDElementCookie cookie, IOHIDEventStruct * pEvent);
138 virtual IOReturn addElement (IOHIDElementCookie cookie);
141 virtual IOReturn removeElement (IOHIDElementCookie cookie);
144 virtual Boolean hasElement (IOHIDElementCookie cookie);
[all...]

Completed in 333 milliseconds

1234567891011>>