/external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/ |
typedUrls.js | 32 // Search history to find up to ten links that a user has typed in, 68 // Maps URLs to a count of the number of times the user typed that URL into 73 // times a user visited a URL by typing the address. 76 // Ignore items unless the user typed the URL. 104 // Sort the URLs by the number of times the user typed them.
|
/external/ppp/pppd/plugins/ |
winbind.c | 93 static int winbind_pap_auth(char *user, 98 static int winbind_chap_verify(char *user, char *ourname, int id, 311 /* run winbind as the user that invoked pppd */ 323 /* Need to write the User's info onto the pipe */ 356 fprintf(pipe_in, "Request-User-Session-Key: yes\n"); 414 notice("Winbind has declined authentication for user!"); 417 } else if (strcasecmp(message, "User-session-key") == 0) { 423 notice("NT session key for user was not 16 bytes!"); 455 notice("Did not get user session key, despite being authenticated!"); 480 * user -- user-name of pee [all...] |
/frameworks/base/media/libmedia/ |
AudioTrack.cpp | 94 void* user, 100 frameCount, flags, cbf, user, notificationFrames, 112 void* user, 118 0, flags, cbf, user, notificationFrames, 149 void* user, 256 mUserData = user; 564 LOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCount, cblk->frameCount, cblk->user); 649 if (position > mCblk->user) return BAD_VALUE; 879 if (cblk->user < cblk->loopEnd) 1187 uint32_t user = cblk->user; local [all...] |
/external/dbus/tools/ |
dbus-launch-x11.c | 75 /* try from the user database */ 76 struct passwd *user = getpwuid (getuid()); local 77 if (user != NULL) 78 home = user->pw_dir; 83 fprintf (stderr, "Can't get user home directory\n"); 129 * time. The idea is that we want to be per-(machine,display,user) 239 struct passwd *user; local 248 user = getpwuid (getuid ()); 249 if (user == NULL) 251 verbose ("Could not determine the user informations; aborting X11 integration.\n") [all...] |
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSettingsUtils.java | 81 * Search the list of known Email providers looking for one that matches the user's email 88 * @param domain The domain portion of the user's email address 105 * @param domain The domain portion of the user's email address 231 * templates are used in 4 fields -- incoming and outgoing URI and user name. 232 * @param email user-specified data used to replace template values 236 String user = emailParts[0]; local 238 incomingUri = expandTemplate(incomingUriTemplate, email, user); 239 incomingUsername = expandTemplate(incomingUsernameTemplate, email, user); 240 outgoingUri = expandTemplate(outgoingUriTemplate, email, user); 241 outgoingUsername = expandTemplate(outgoingUsernameTemplate, email, user); [all...] |
/system/core/toolbox/ |
ls.c | 166 char user[16]; local 184 sprintf(user, "%ld", s.st_uid); 187 user2str(s.st_uid, user); 201 mode, user, group, 207 mode, user, group, s.st_size, date, name); 226 mode, user, group, date, name, linkto); 231 mode, user, group, date, name);
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLParser.h | 75 // Search backwards for @, which is the separator between the user info 83 // Found user info: <user-info>@<server-info> 87 // No user info, everything is server info. 507 static void parseUserInfo(const CHAR* spec, const URLComponent& user, URLComponent& username, URLComponent& password) 509 // Find the first colon in the user section, which separates the 512 while (colonOffset < user.length() && spec[user.begin() + colonOffset] != ':') 515 if (colonOffset < user.length()) { 517 username = URLComponent(user.begin(), colonOffset) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_gtc.c | 115 /* "RESPONSE=<user>\0<password>" */ 135 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Response user", 160 "Identity not found in the user " 175 if (sm->user == NULL || sm->user->password == NULL || 176 sm->user->password_hash) { 183 if (rlen != sm->user->password_len || 184 os_memcmp(pos, sm->user->password, rlen) != 0) {
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_gtc.c | 115 /* "RESPONSE=<user>\0<password>" */ 135 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Response user", 160 "Identity not found in the user " 175 if (sm->user == NULL || sm->user->password == NULL || 176 sm->user->password_hash) { 183 if (rlen != sm->user->password_len || 184 os_memcmp(pos, sm->user->password, rlen) != 0) {
|
/packages/apps/Exchange/tests/src/com/android/exchange/ |
EasSyncServiceTests.java | 39 static private final String USER = "user"; 97 private EasSyncService setupService(String user) { 99 svc.mUserName = user; 107 // Simple user name and command 108 EasSyncService svc = setupService(USER); 113 assertEquals("Basic " + Base64.encodeToString((USER+":"+PASSWORD).getBytes(), 115 assertEquals("&User=" + USER + "&DeviceId=" + ID + "&DeviceType=" + 119 // User name that requires encodin 120 String user = "name_with_underscore@foo%bar.com"; local [all...] |
/external/ppp/pppd/ |
auth.c | 174 /* Hook for a plugin to check the PAP user and password */ 175 int (*pap_auth_hook) __P((char *user, char *passwd, char **msgp, 179 /* Hook for a plugin to know about the PAP user logout */ 183 int (*pap_passwd_hook) __P((char *user, char *passwd)) = NULL; 189 int (*chap_passwd_hook) __P((char *user, char *passwd)) = NULL; 238 bool explicit_remote = 0; /* User specified explicit remote name */ 362 "Get PAP user and password from file", 365 { "user", o_string, user, 417 /* open user info file * [all...] |
/external/chromium/chrome/browser/remoting/ |
setup_flow_login_step.cc | 51 if (!result->GetString("user", &username) || 68 void SetupFlowLoginStep::OnUserSubmittedAuth(const std::string& user, 72 flow()->context()->login = user; 85 authenticator_->StartClientLogin(user, remoting_password, 126 args.SetString("user", "");
|
/external/freetype/src/base/ |
ftdbgmem.c | 233 memory->user = table->memory_user; 235 memory->user = table; 248 memory->user = table->memory_user; 250 memory->user = table; 321 table->memory_user = memory->user; 683 FT_MemTable table = (FT_MemTable)memory->user; 719 FT_MemTable table = (FT_MemTable)memory->user; 745 FT_MemTable table = (FT_MemTable)memory->user; 838 memory->user = table; 889 FT_MemTable table = (FT_MemTable)memory->user; [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressFactoryImpl.java | 109 *@param user -- the user 112 public javax.sip.address.SipURI createSipURI(String user, String host) 118 if (user != null) { 119 uriString.append(user);
|
/external/valgrind/main/none/tests/ |
cmdline1.stdout.exp | 6 basic user options for all Valgrind tools, with defaults in [ ]: 22 user options for Valgrind tools that report errors: 27 --xml-user-comment=STR copy STR verbatim into XML output 44 user options for Valgrind tools that replace malloc: 47 uncommon user options for all Valgrind tools: 70 user options for Nulgrind:
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
rebaseline.py | 36 from webkitpy.common.system.user import User 81 chosen_name = self._tool.user.prompt_with_list("Which builder to pull results from:", builder_choices) 93 return self._tool.user.prompt_with_list("Which test(s) to rebaseline:", failing_tests, can_choose_multiple=True)
|
/frameworks/base/include/media/ |
AudioRecord.h | 92 * user: Pointer to context for use by the callback receiver. 102 typedef void (*callback_t)(int event, void* user, void *info); 142 * user Context for use by the callback receiver. 158 void* user = 0, 184 void* user = 0, 325 * Such loss typically occurs when the user space process is blocked longer than the capacity of audio driver buffers.
|
/libcore/luni/src/main/java/java/sql/ |
DriverManager.java | 151 * Normally, at least the properties {@code "user"} and {@code 153 * the user ID and its corresponding password to get access to 190 * @param user 191 * a user ID used to login to the database. 193 * a password for the user ID to login to the database. 200 public static Connection getConnection(String url, String user, String password) 203 if (user != null) { 204 theProperties.setProperty("user", user);
|
/external/bluetooth/glib/gio/ |
gmountoperation.c | 47 * user credentials such as FTP or WebDAV. 68 char *user; member in struct:_GMountOperationPrivate 149 g_value_set_string (value, priv->user); 190 g_free (priv->user); 247 * @message: string containing a message to display to the user. 248 * @default_user: string containing the default user name. 252 * Emitted when a mount operation asks the user for a password. 271 * @message: string containing a message to display to the user. 274 * Emitted when asking the user a question and gives a list of 275 * choices for the user to choose from [all...] |
/external/chromium/chrome/browser/resources/options/ |
cookies_view.css | 87 -webkit-user-select: text; 95 -webkit-user-select: text; 163 -webkit-user-select: text;
|
/external/libxml2/ |
xpointer.c | 259 ret->user = (void *) node; 280 tmp = xmlXPtrCmpPoints(range->user, range->index, 283 tmp2 = range->user; 284 range->user = range->user2; 311 if (range1->user != range2->user) 354 ret->user = start; 391 ret->user = start->user; 393 ret->user2 = end->user; [all...] |
/development/tools/emulator/system/camera/ |
EmulatedCamera.h | 149 void* user); 324 void* user);
|
/external/chromium/chrome/browser/chromeos/login/ |
screen_locker.h | 45 // authenticate the user. ScreenLocker manages its life cycle and will 61 explicit ScreenLocker(const UserManager::User& user); 87 // Authenticates the user with given |password| and authenticator. 99 // Present user a CAPTCHA challenge with image from |captcha_url|, 112 // Returns the user to authenticate. 113 const UserManager::User& user() const { function in class:chromeos::ScreenLocker 122 // lock event only after a user is logged in. 199 // Logged in user [all...] |
/external/chromium/chrome/browser/resources/gpu_internals/ |
timeline.css | 7 -webkit-user-select: none;
|
/external/chromium/net/test/ |
test_server.h | 125 const std::string& user) const; 128 const std::string& user,
|