OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SessionState
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebKit2/Shared/
SessionState.h
38
class
SessionState
{
40
SessionState
();
41
SessionState
(const BackForwardListItemVector&, uint32_t currentIndex);
49
static bool decode(CoreIPC::ArgumentDecoder*,
SessionState
&);
SessionState.cpp
27
#include "
SessionState
.h"
49
SessionState
::
SessionState
()
54
SessionState
::
SessionState
(const BackForwardListItemVector& list, uint32_t currentIndex)
60
bool
SessionState
::isEmpty() const
67
void
SessionState
::encode(CoreIPC::ArgumentEncoder* encoder) const
73
bool
SessionState
::decode(CoreIPC::ArgumentDecoder* decoder,
SessionState
& state)
WebPageCreationParameters.h
30
#include "
SessionState
.h"
68
SessionState
sessionState
;
/external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp
93
LOG(
SessionState
, "WebBackForwardList dictionary representation does not have a valid current index");
99
LOG(
SessionState
, "WebBackForwardList dictionary representation does not have a valid integer current index");
105
LOG(
SessionState
, "WebBackForwardList dictionary representation does not have a valid list of entries");
111
LOG(
SessionState
, "WebBackForwardList dictionary representation contains an invalid current index (%ld) for the number of entries (%ld)", currentIndex, size);
116
LOG(
SessionState
, "WebBackForwardList dictionary representation says there is no current item index, but there is a list of %ld entries - this is bogus", size);
125
LOG(
SessionState
, "WebBackForwardList entry array does not have a valid entry at index %i", (int)i);
131
LOG(
SessionState
, "WebBackForwardList entry at index %i does not have a valid URL", (int)i);
137
LOG(
SessionState
, "WebBackForwardList entry at index %i does not have a valid title", (int)i);
143
LOG(
SessionState
, "WebBackForwardList entry at index %i does not have a valid original URL", (int)i);
149
LOG(
SessionState
, "WebBackForwardList entry at index %i does not have back/forward data", (int)i)
[
all
...]
WebPageProxyCF.cpp
31
#include "
SessionState
.h"
116
LOG(
SessionState
, "Unrecognized version header for session state data - cannot restore");
126
LOG(
SessionState
, "Could not read session state property list");
134
LOG(
SessionState
, "
SessionState
property list is not a CFDictionaryRef (%i) - its CFTypeID is %i", (int)CFDictionaryGetTypeID(), (int)CFGetTypeID(propertyList.get()));
141
LOG(
SessionState
, "
SessionState
dictionary has a SessionHistory key, but the value is not a dictionary");
149
LOG(
SessionState
, "
SessionState
dictionary has a ProvisionalValue key, but the value is not a string");
156
LOG(
SessionState
, "Failed to restore back/forward list from SessionHistory dictionary")
[
all
...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h
94
class
SessionState
;
475
uint64_t restoreSession(const
SessionState
&);
476
void restoreSessionAndNavigateToCurrentItem(const
SessionState
&, const SandboxExtension::Handle&);
WebPage.cpp
43
#include "
SessionState
.h"
227
if (!parameters.
sessionState
.isEmpty())
228
restoreSession(parameters.
sessionState
);
1053
uint64_t WebPage::restoreSession(const
SessionState
&
sessionState
)
1055
const BackForwardListItemVector& list =
sessionState
.list();
1068
if (i ==
sessionState
.currentIndex())
1077
void WebPage::restoreSessionAndNavigateToCurrentItem(const
SessionState
&
sessionState
, const SandboxExtension::Handle& sandboxExtensionHandle)
[
all
...]
/frameworks/base/services/java/com/android/server/
InputMethodManagerService.java
173
class
SessionState
{
180
return "
SessionState
{uid " + client.uid + " pid " + client.pid
188
SessionState
(ClientState _client, IInputMethod _method,
204
SessionState
curSession;
336
SessionState
mEnabledSession;
756
final
SessionState
session = mCurClient.curSession;
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp
40
#include "
SessionState
.h"
[
all
...]
Completed in 532 milliseconds