HomeSort by relevance Sort by last modified time
    Searched defs:userInfo (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/Source/WebKit/win/
WebNotification.cpp 35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
39 , m_userInfo(userInfo)
65 WebNotification* WebNotification::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IPropertyBag* userInfo /*=0*/)
67 WebNotification* instance = new WebNotification(name, anObject, userInfo);
107 /* [optional][in] */ IPropertyBag* /*userInfo*/)
137 HRESULT STDMETHODCALLTYPE WebNotification::userInfo(
WebError.cpp 41 WebError::WebError(const ResourceError& error, IPropertyBag* userInfo)
44 , m_userInfo(userInfo)
56 WebError* WebError::createInstance(const ResourceError& error, IPropertyBag* userInfo)
58 WebError* instance = new WebError(error, userInfo);
177 HRESULT STDMETHODCALLTYPE WebError::userInfo(
220 // copy userinfo from CFErrorRef
WebIconDatabase.cpp 402 COMPtr<CFDictionaryPropertyBag> userInfo = CFDictionaryPropertyBag::createInstance();
403 userInfo->setDictionary(dictionary.get());
406 notifyCenter->postNotificationName(WebIconDatabase::iconDatabaseDidAddIconNotification(), static_cast<IWebIconDatabase*>(iconDB), userInfo.get());
WebHistory.cpp 145 HRESULT WebHistory::postNotification(NotificationType notifyType, IPropertyBag* userInfo /*=0*/)
148 HRESULT hr = nc->postNotificationName(getNotificationString(notifyType), static_cast<IWebHistory*>(this), userInfo);
256 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryItemsDiscardedWhileLoadingNotification), discardedItems.get());
257 hr = postNotification(kWebHistoryItemsDiscardedWhileLoadingNotification, userInfo.get());
456 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryAllItemsRemovedNotification), allItems.get());
457 return postNotification(kWebHistoryAllItemsRemovedNotification, userInfo.get());
635 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem(
637 hr = postNotification(kWebHistoryItemsRemovedNotification, userInfo.get());
685 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem(
687 hr = postNotification(kWebHistoryItemsAddedNotification, userInfo.get())
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerTest.java 21 import android.content.pm.UserInfo;
41 List<UserInfo> users = mUserManager.getUsers();
43 for (UserInfo user : users) {
57 UserInfo userInfo = details.createUser("Guest 1", UserInfo.FLAG_GUEST);
58 assertTrue(userInfo != null);
60 List<UserInfo> list = details.getUsers();
62 for (UserInfo user : list) {
63 if (user.id == userInfo.id && user.name.equals("Guest 1"
    [all...]
  /external/clang/test/Analysis/
cfref_PR2519.c 26 extern void CFNotificationCenterPostNotification(CFNotificationCenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverImmediately);
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
41 userInfo, 0);
42 CFRelease(userInfo); // no-warning
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 50 /** userInfo field
52 protected UserInfo userInfo;
63 if (userInfo != null) {
64 userInfo.encode(buffer);
87 if (this.userInfo != null && otherAuth.userInfo != null) {
88 if (!this.userInfo.equals(otherAuth.userInfo)) {
104 * get the userInfo memnber
    [all...]
SipUri.java 116 UserInfo userInfo = authority.getUserInfo();
117 if (userInfo != null)
118 userInfo.clearPassword();
165 // components must match; comparison of userinfo is case-sensitive
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/
DSPStrm.c 118 struct DSP_STREAMINFO userInfo;
141 strmInfo.pUser = &userInfo;
195 struct DSP_STREAMINFO userInfo;
209 strmInfo.pUser = &userInfo;
283 struct DSP_STREAMINFO userInfo;
304 strmInfo.pUser = &userInfo; /* need valid user info ptr */
  /libcore/luni/src/main/java/java/net/
URL.java 93 private transient String userInfo;
287 userInfo = host.substring(0, index);
290 userInfo = null;
541 userInfo = authority.substring(0, index);
589 return userInfo;
655 protected void set(String protocol, String host, int port, String authority, String userInfo,
663 this.userInfo = userInfo;
URLStreamHandler.java 95 String userInfo;
109 userInfo = spec.substring(authorityStart, userInfoEnd);
112 userInfo = null;
146 userInfo = url.getUserInfo();
192 setURL(url, url.getProtocol(), host, port, authority, userInfo, path, query, ref);
242 String authority, String userInfo, String path, String query,
247 u.set(protocol, host, port, authority, userInfo, path, query, ref);
URI.java 184 private transient String userInfo;
235 public URI(String scheme, String userInfo, String host, int port, String path, String query,
237 if (scheme == null && userInfo == null && host == null && path == null
253 if (userInfo != null || host != null || port != -1) {
257 if (userInfo != null) {
258 USER_INFO_ENCODER.appendEncoded(uri, userInfo);
496 // fill in the userInfo, host and port fields
497 userInfo = tempUserInfo;
503 private void validateUserInfo(String uri, String userInfo, int index)
505 for (int i = 0; i < userInfo.length(); i++)
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
UserManager.java 24 import android.content.pm.UserInfo;
62 private SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
94 public List<UserInfo> getUsers() {
96 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
104 public UserInfo getUser(int userId) {
106 UserInfo info = mUsers.get(userId);
119 UserInfo info = mUsers.get(userId);
167 UserInfo user = readUser(Integer.parseInt(id))
    [all...]
PackageManagerService.java 79 import android.content.pm.UserInfo;
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 133 String[] userInfo = recvAuth.getLogin();
134 if (userInfo != null) {
135 mUsername = userInfo[0];
136 mPassword = userInfo[1];
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java 28 import android.content.pm.UserInfo;
    [all...]