Searched defs:cookie (Results 151 - 175 of 184) sorted by relevance

12345678

/external/openssh/
H A Dsshd.c583 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
2135 u_char cookie[8]; local
2144 * cookie. This only affects rhosts authentication, and this is one
2147 arc4random_buf(cookie, sizeof(cookie));
2156 packet_put_char(cookie[i]);
2206 if (cookie[i] != packet_get_char())
2244 cookie, session_id);
/external/strace/
H A Dutil.c1453 # define get_arg0(tcp, cookie, valp) \
1455 # define get_arg1(tcp, cookie, valp) \
1459 set_arg0 (struct tcb *tcp, void *cookie, long val) argument
1465 set_arg1 (struct tcb *tcp, void *cookie, long val) argument
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Proxy.cpp342 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().isNull() ? String() : source.url().string(), source.startLine()); local
377 InspectorInstrumentation::didEvaluateScript(cookie);
468 InspectorInstrumentationCookie cookie; local
477 cookie = InspectorInstrumentation::willCallFunction(m_frame, resourceName, lineNumber);
484 InspectorInstrumentation::didCallFunction(cookie);
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.h450 inline void InspectorInstrumentation::didCallFunction(const InspectorInstrumentationCookie& cookie) argument
453 if (hasFrontends() && cookie.first)
454 didCallFunctionImpl(cookie);
467 inline void InspectorInstrumentation::didChangeXHRReadyState(const InspectorInstrumentationCookie& cookie) argument
470 if (hasFrontends() && cookie.first)
471 didChangeXHRReadyStateImpl(cookie);
484 inline void InspectorInstrumentation::didDispatchEvent(const InspectorInstrumentationCookie& cookie) argument
487 if (hasFrontends() && cookie.first)
488 didDispatchEventImpl(cookie);
501 inline void InspectorInstrumentation::didDispatchEventOnWindow(const InspectorInstrumentationCookie& cookie) argument
518 didEvaluateScript(const InspectorInstrumentationCookie& cookie) argument
535 didFireTimer(const InspectorInstrumentationCookie& cookie) argument
552 didLayout(const InspectorInstrumentationCookie& cookie) argument
569 didLoadXHR(const InspectorInstrumentationCookie& cookie) argument
586 didPaint(const InspectorInstrumentationCookie& cookie) argument
603 didRecalculateStyle(const InspectorInstrumentationCookie& cookie) argument
650 didReceiveResourceData(const InspectorInstrumentationCookie& cookie) argument
667 didReceiveResourceResponse(const InspectorInstrumentationCookie& cookie, unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response) argument
785 didWriteHTML(const InspectorInstrumentationCookie& cookie, unsigned int endLine) argument
[all...]
H A DInspectorInstrumentation.cpp220 void InspectorInstrumentation::didCallFunctionImpl(const InspectorInstrumentationCookie& cookie) argument
222 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
237 void InspectorInstrumentation::didChangeXHRReadyStateImpl(const InspectorInstrumentationCookie& cookie) argument
239 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
256 void InspectorInstrumentation::didDispatchEventImpl(const InspectorInstrumentationCookie& cookie) argument
258 cancelPauseOnNativeEvent(cookie.first);
260 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
277 void InspectorInstrumentation::didDispatchEventOnWindowImpl(const InspectorInstrumentationCookie& cookie) argument
279 cancelPauseOnNativeEvent(cookie.first);
281 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
296 didEvaluateScriptImpl(const InspectorInstrumentationCookie& cookie) argument
315 didFireTimerImpl(const InspectorInstrumentationCookie& cookie) argument
334 didLayoutImpl(const InspectorInstrumentationCookie& cookie) argument
351 didLoadXHRImpl(const InspectorInstrumentationCookie& cookie) argument
368 didPaintImpl(const InspectorInstrumentationCookie& cookie) argument
385 didRecalculateStyleImpl(const InspectorInstrumentationCookie& cookie) argument
430 didReceiveResourceDataImpl(const InspectorInstrumentationCookie& cookie) argument
447 didReceiveResourceResponseImpl(const InspectorInstrumentationCookie& cookie, unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response) argument
462 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(frame, identifier, r); local
624 didWriteHTMLImpl(const InspectorInstrumentationCookie& cookie, unsigned int endLine) argument
792 retrieveTimelineAgent(const InspectorInstrumentationCookie& cookie) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DMediaPlayerPrivateQuickTimeWin.cpp186 const Cookie& cookie = documentCookies[ndx]; local
188 if (cookie.name.isEmpty())
191 // Build up the cookie string with as much information as we can get so WinINet
194 addCookieParam(cookieBuilder, cookie.name, cookie.value);
195 addCookieParam(cookieBuilder, "path", cookie.path);
196 if (cookie.expires)
197 addCookieParam(cookieBuilder, "expires", rfc2616DateStringFromTime(cookie.expires));
198 if (cookie.httpOnly)
203 if (!cookie
[all...]
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp273 const Cookie& cookie = documentCookies[ndx]; local
275 if (cookie.name.isEmpty())
278 // Build up the cookie string with as much information as we can get so WinINet
281 addCookieParam(cookieBuilder, cookie.name, cookie.value);
282 addCookieParam(cookieBuilder, "path", cookie.path);
283 if (cookie.expires)
284 addCookieParam(cookieBuilder, "expires", rfc2616DateStringFromTime(cookie.expires));
285 if (cookie.httpOnly)
290 if (!cookie
[all...]
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequest.cpp89 m_forbiddenRequestHeaders.add("cookie");
136 return equalIgnoringCase(name, "set-cookie") || equalIgnoringCase(name, "set-cookie2");
355 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willChangeXHRReadyState(scriptExecutionContext(), this);
360 InspectorInstrumentation::didChangeXHRReadyState(cookie);
363 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willLoadXHR(scriptExecutionContext(), this); local
365 InspectorInstrumentation::didLoadXHR(cookie);
/external/webkit/Source/WebKit/win/
H A DDOMHTMLClasses.cpp319 HRESULT STDMETHODCALLTYPE DOMHTMLDocument::cookie( function in class:DOMHTMLDocument
327 /* [in] */ BSTR /*cookie*/)
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps_upnp_web.c1816 void *cookie,
1819 struct web_connection *c = cookie;
1861 c /* cookie */,
1815 web_connection_got_file_handler(struct httpread *handle, void *cookie, enum httpread_event en) argument
/external/chromium/base/
H A Dmessage_loop_unittest.cc617 cookie(c),
622 int cookie; member in struct:TaskItem
626 return type == other.type && cookie == other.cookie && start == other.start;
652 return os << item.type << " " << item.cookie << " starts";
654 return os << item.type << " " << item.cookie << " ends";
660 OrderedTasks(TaskList* order, int cookie) argument
663 cookie_(cookie) {
665 OrderedTasks(TaskList* order, TaskType type, int cookie) argument
668 cookie_(cookie) {
692 int cookie() const { function in class:OrderedTasks
709 MessageBoxTask(TaskList* order, int cookie, bool is_reentrant) argument
729 EndDialogTask(TaskList* order, int cookie) argument
749 RecursiveTask(int depth, TaskList* order, int cookie, bool is_reentrant) argument
773 RecursiveSlowTask(int depth, TaskList* order, int cookie, bool is_reentrant) argument
785 QuitTask(TaskList* order, int cookie) argument
798 SleepTask(TaskList* order, int cookie, int ms) argument
1073 TaskThatPumps(TaskList* order, int cookie) argument
[all...]
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.cc435 uintptr_t cookie = reinterpret_cast<uintptr_t>(new_container.get()); local
436 pending_tabs_.Get()[cookie] = new_container;
440 attach_params_.cookie = static_cast<uint64>(cookie);
899 uintptr_t cookie) {
901 PendingTabs::iterator index = pending_tabs.find(cookie);
908 NOTREACHED() << "Failed to find ExternalTabContainer for cookie: "
909 << cookie;
898 RemovePendingTab( uintptr_t cookie) argument
/external/dbus/dbus/
H A Ddbus-auth.c51 * @todo the cookie keyring needs to be cached globally not just
177 DBusKeyring *keyring; /**< Keyring for cookie mechanism. */
178 int cookie_id; /**< ID of cookie to use */
456 DBusString cookie; local
464 if (!_dbus_string_init (&cookie))
468 &cookie))
471 if (_dbus_string_get_length (&cookie) == 0)
494 if (!_dbus_string_copy (&cookie, 0,
507 _dbus_string_zero (&cookie);
508 _dbus_string_free (&cookie);
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h93 @property(copy) NSString *cookie; variable
/external/webkit/Source/WebCore/page/
H A DDOMWindow.cpp1606 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEventOnWindow(frame(), *event, this); local
1610 InspectorInstrumentation::didDispatchEventOnWindow(cookie);
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp1238 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willPaint(m_owningLayer->renderer()->frame(), clip); local
1260 InspectorInstrumentation::didPaint(cookie);
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h285 __u64 cookie, member in struct:nfs_entry
369 __u32 cookie; member in struct:nfs_readdirargs
470 __u64 cookie; member in struct:nfs3_readdirargs
611 u64 cookie; member in struct:nfs4_readdir_arg
/external/kernel-headers/original/media/
H A Dmsm_isp.h342 uint32_t cookie; member in struct:msm_mctl_pp_frame_cmd
H A Dmsm_camera.h338 uint32_t handle; /* stores vb cookie */
365 uint32_t cookie; /* daemon's cookie */ member in struct:msm_mctl_pp_cmd_ack_event
674 uint32_t cookie; member in struct:msm_mem_map_info
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1456 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRecalculateStyle(this); local
1535 InspectorInstrumentation::didRecalculateStyle(cookie);
2656 } else if (equalIgnoringCase(equiv, "set-cookie")) {
3681 String Document::cookie(ExceptionCode& ec) const function in class:WebCore::Document
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c300 const u8 *buf, size_t buf_len, u64 *cookie,
1317 struct nlattr *cookie, const u8 *frame,
1327 if (!cookie)
1330 cookie_val = nla_get_u64(cookie);
1332 " cookie=0%llx%s (ack=%d)",
1451 struct nlattr *cookie, struct nlattr *sig)
1488 mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1563 u64 cookie; local
1581 cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1583 cookie
1316 mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv, struct nlattr *cookie, const u8 *frame, size_t len, struct nlattr *ack) argument
1447 mlme_event(struct wpa_driver_nl80211_data *drv, enum nl80211_commands cmd, struct nlattr *frame, struct nlattr *addr, struct nlattr *timed_out, struct nlattr *freq, struct nlattr *ack, struct nlattr *cookie, struct nlattr *sig) argument
5288 u64 cookie; local
8151 u64 *cookie = arg; local
8168 u64 cookie; local
8293 u64 cookie; local
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c300 const u8 *buf, size_t buf_len, u64 *cookie,
1317 struct nlattr *cookie, const u8 *frame,
1327 if (!cookie)
1330 cookie_val = nla_get_u64(cookie);
1332 " cookie=0%llx%s (ack=%d)",
1451 struct nlattr *cookie, struct nlattr *sig)
1488 mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1563 u64 cookie; local
1581 cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1583 cookie
1316 mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv, struct nlattr *cookie, const u8 *frame, size_t len, struct nlattr *ack) argument
1447 mlme_event(struct wpa_driver_nl80211_data *drv, enum nl80211_commands cmd, struct nlattr *frame, struct nlattr *addr, struct nlattr *timed_out, struct nlattr *freq, struct nlattr *ack, struct nlattr *cookie, struct nlattr *sig) argument
5288 u64 cookie; local
8151 u64 *cookie = arg; local
8168 u64 cookie; local
8293 u64 cookie; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_nl80211.c300 const u8 *buf, size_t buf_len, u64 *cookie,
1317 struct nlattr *cookie, const u8 *frame,
1327 if (!cookie)
1330 cookie_val = nla_get_u64(cookie);
1332 " cookie=0%llx%s (ack=%d)",
1451 struct nlattr *cookie, struct nlattr *sig)
1488 mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1563 u64 cookie; local
1581 cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1583 cookie
1316 mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv, struct nlattr *cookie, const u8 *frame, size_t len, struct nlattr *ack) argument
1447 mlme_event(struct wpa_driver_nl80211_data *drv, enum nl80211_commands cmd, struct nlattr *frame, struct nlattr *addr, struct nlattr *timed_out, struct nlattr *freq, struct nlattr *ack, struct nlattr *cookie, struct nlattr *sig) argument
5288 u64 cookie; local
8151 u64 *cookie = arg; local
8168 u64 cookie; local
8293 u64 cookie; local
[all...]

Completed in 662 milliseconds

12345678