/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
x_tables.h | 17 } user; member in union:xt_entry_match::__anon29606 42 } user; member in union:xt_entry_target::__anon29609 59 .target.u.user = { \
|
/packages/apps/Settings/src/com/android/settings/users/ |
UserSettings.java | 80 /** UserId of the user being removed */ 82 /** UserId of the user that was just added */ 262 UserInfo user = mUserManager.getUserInfo(UserHandle.myUserId()); local 263 if (user.iconPath == null || user.iconPath.equals("")) { 264 assignProfilePhoto(user); 268 profileName = user.name; 344 UserHandle user = new UserHandle(userId); local 345 mUserManager.setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user); 346 mUserManager.setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user); 575 UserInfo user = null; local 742 UserInfo user = mUserManager.getUserInfo(userId); local [all...] |
/external/bison/lib/ |
timevar.c | 203 now->user = 0; 215 now->user = tms.tms_utime * ticks_to_msec; 218 now->user = (tms.tms_utime + tms.tms_cutime) * ticks_to_msec; 229 now->user = rusage.ru_utime.tv_sec + rusage.ru_utime.tv_usec * 1e-6; 233 now->user = clock () * clocks_to_msec; 246 timer->user += stop->user - start->user; 492 if (tv->elapsed.user < tiny 501 /* Print user-mode time for this process. * [all...] |
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
xmppclientsettings.h | 43 void set_user(const std::string & user) { user_ = user; } 54 const std::string & user() const { return user_; } function in class:buzz::XmppUserSettings 91 void set_proxy_user(const std::string & user) { proxy_user_ = user; }
|
/external/kernel-headers/original/asm-arm/ |
page.h | 35 * User Space Model 39 * page-based copying and clearing for user space for the particular 106 #error Unknown user operations model 110 void (*cpu_clear_user_page)(void *p, unsigned long user); 112 unsigned long user); 126 extern void __cpu_clear_user_page(void *p, unsigned long user); 128 unsigned long user);
|
/external/webkit/Source/WebKit/win/ |
WebURLCredential.cpp | 106 /* [in] */ BSTR user, 125 m_credential = Credential(String(user, SysStringLen(user)), String(password, SysStringLen(password)), corePersistence); 157 HRESULT STDMETHODCALLTYPE WebURLCredential::user( function in class:WebURLCredential 160 BString str = m_credential.user();
|
/hardware/libhardware/include/hardware/ |
camera.h | 52 void *user); 57 void *user); 61 camera_frame_metadata_t *metadata, void *user); 66 void *user); 107 void *user);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
UserManagerTest.java | 62 for (UserInfo user : list) { 63 if (user.id == userInfo.id && user.name.equals("Guest 1") 64 && user.isGuest() 65 && !user.isAdmin() 66 && !user.isPrimary()) { 68 Bundle restrictions = mUserManager.getUserRestrictions(user.getUserHandle()); 69 assertFalse("New user should have DISALLOW_CONFIG_WIFI =false by default", 79 UserInfo user2 = mUserManager.createUser("User 2", UserInfo.FLAG_ADMIN); 101 for (UserInfo user : list) 141 UserInfo user = created.remove(0); local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
ArrayData.java | 36 private final CodeAddress user; field in class:ArrayData 55 * @param user {@code non-null;} address representing the instruction that 59 public ArrayData(SourcePosition position, CodeAddress user, 64 if (user == null) { 65 throw new NullPointerException("user == null"); 95 this.user = user; 161 return new ArrayData(getPosition(), user, values, arrayType); 183 int baseAddress = user.getAddress();
|
/dalvik/dx/src/com/android/dx/dex/code/ |
ArrayData.java | 36 private final CodeAddress user; field in class:ArrayData 55 * @param user {@code non-null;} address representing the instruction that 59 public ArrayData(SourcePosition position, CodeAddress user, 64 if (user == null) { 65 throw new NullPointerException("user == null"); 95 this.user = user; 161 return new ArrayData(getPosition(), user, values, arrayType); 183 int baseAddress = user.getAddress();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
ArrayData.java | 36 private final CodeAddress user; field in class:ArrayData 55 * @param user {@code non-null;} address representing the instruction that 59 public ArrayData(SourcePosition position, CodeAddress user, 64 if (user == null) { 65 throw new NullPointerException("user == null"); 95 this.user = user; 161 return new ArrayData(getPosition(), user, values, arrayType); 183 int baseAddress = user.getAddress();
|
/external/smack/src/org/jivesoftware/smack/ |
RosterGroup.java | 112 * <tt>null</tt> if the user is not an entry in the group. 114 * @param user the XMPP address of the user (eg "jsmith@example.com"). 117 public RosterEntry getEntry(String user) { 118 if (user == null) { 123 user = StringUtils.parseBareAddress(user); 124 String userLowerCase = user.toLowerCase(); 150 * @param user the XMPP address of the user [all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
QueueDetails.java | 87 * Adds a user to the packet.
89 * @param user the user.
91 private void addUser(QueueUser user) {
93 users.add(user);
111 QueueUser user = (QueueUser)i.next();
local 112 int position = user.getQueuePosition();
113 int timeRemaining = user.getEstimatedRemainingTime();
114 Date timestamp = user.getQueueJoinTimestamp();
116 buf.append("<user jid=\"").append(user.getUserID()).append("\">"); [all...] |
/frameworks/base/core/java/android/content/pm/ |
RegisteredServicesCache.java | 60 * {@link PackageManager} on a per-user basis. It's updated as packages are 62 * {@link #invalidateCache(int)} when a user is started, since 156 // External apps can't coexist with multi-user, so scan owner 163 final UserServices<V> user = findOrCreateUserLocked(userId); local 164 user.services = null; 170 final UserServices<V> user = findOrCreateUserLocked(userId); local 171 if (user.services != null) { 172 fout.println("RegisteredServicesCache: " + user.services.size() + " services"); 173 for (ServiceInfo<?> info : user.services.values()) { 249 // Find user and lazily populate cach 250 final UserServices<V> user = findOrCreateUserLocked(userId); local 265 final UserServices<V> user = findOrCreateUserLocked(userId); local 319 final UserServices<V> user = findOrCreateUserLocked(userId); local 509 final UserServices<V> user = findOrCreateUserLocked(userId); local 544 final UserServices<V> user = mUserServices.valueAt(i); local [all...] |
/frameworks/base/core/java/android/content/ |
ContextWrapper.java | 295 public void startActivityAsUser(Intent intent, UserHandle user) { 296 mBase.startActivityAsUser(intent, user); 306 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { 307 mBase.startActivityAsUser(intent, options, user); 386 public void sendBroadcastAsUser(Intent intent, UserHandle user) { 387 mBase.sendBroadcastAsUser(intent, user); 391 public void sendBroadcastAsUser(Intent intent, UserHandle user, 393 mBase.sendBroadcastAsUser(intent, user, receiverPermission); 397 public void sendOrderedBroadcastAsUser(Intent intent, UserHandle user, 400 mBase.sendOrderedBroadcastAsUser(intent, user, receiverPermission, resultReceiver [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
screen_lock_view.cc | 143 // User icon. 144 UserManager::User user = screen_locker_->user(); local 145 user_view_->SetImage(user.image(), user.image()); 147 // User name. 148 std::wstring text = UTF8ToWide(user.GetDisplayName()); 246 UserManager::User* user = Details<UserManager::User>(details).ptr() [all...] |
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 30 # port 9020, and include the hostname, user and pass, and it should 53 die "Usage: $0 ADD USER PASS HOSTNAME\n" unless @ARGV == 4; 56 die "Usage: $0 DEL USER\n" unless @ARGV == 2; 57 print "Are you sure you want to delete user \"$ARGV[1]\"? [N/y] "; 75 print "user $key, hostname $domain, ip $ip\n"; 125 my ($user,$pass) = split ":", MIME::Base64::decode($1); 126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) { 142 my ($user, $pass, $hostname) = @_; 144 $X->put($user, join("\t", ($pass, $hostname))); 150 my ($user, $pass, $hostname) = @_ [all...] |
/external/netperf/ |
netcpu_pstatnew.c | 33 original psp_idlecycles - one for user, one for kernel and one for 43 uint64_t user; member in struct:cpu_time_counters 113 res[i].user = (((uint64_t)psp[i].psp_usercycles.psc_hi << 32) + 117 "user[%d] = 0x%"PRIx64" ", 119 res[i].user); 163 "\t user %llu\n",counters[instance].user); 204 /* the one that the user want for the cpu utilization */ 227 thing in measuring user, kernel, interrupt and idle all together 231 properly accounted. The sum of user, kernel, interrupt and idl [all...] |
netcpu_kstat10.c | 46 uint64_t user; member in struct:cpu_time_counters 63 "\t user %llu\n",counters[instance].user); 148 counters[cpu_num].user = knp->value.ui64; 156 something and we need to warn the user. raj 2005-01-28 */ 336 /* the one that the user want for the cpu utilization */ 352 spent in user, idle and kernel. We also have nanoseconds spent 355 accounting. this means that time accounted in user, kernel or 357 porpoises we do not really care about that for user and kernel, 366 time from each of user, kernel and idle in proportion to thei [all...] |
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
Connection.java | 155 * @param user 159 * user in OpenSSH key format (PEM, you can't miss the 175 public synchronized boolean authenticateWithDSA(String user, String pem, String password) throws IOException 189 if (user == null) 190 throw new IllegalArgumentException("user argument is null"); 195 authenticated = am.authenticatePublicKey(user, pem.toCharArray(), password, getOrCreateSecureRND()); 204 * @param user 212 public synchronized boolean authenticateWithKeyboardInteractive(String user, InteractiveCallback cb) 215 return authenticateWithKeyboardInteractive(user, null, cb); 239 * @param user [all...] |
/external/smack/src/org/jivesoftware/smack/packet/ |
RosterPacket.java | 104 private String user; field in class:RosterPacket.Item 113 * @param user the user. 114 * @param name the user's name. 116 public Item(String user, String name) { 117 this.user = user.toLowerCase(); 125 * Returns the user. 127 * @return the user. 130 return user; [all...] |
/external/smack/src/org/jivesoftware/smack/proxy/ |
Socks5ProxySocketFactory.java | 83 String user = proxy.getProxyUsername(); local 146 if(user==null || passwd==null) 172 buf[index++]=(byte)(user.length()); 173 System.arraycopy(user.getBytes(), 0, buf, index, 174 user.length()); 175 index+=user.length();
|
/external/webkit/Source/WebCore/platform/network/brew/ |
SocketStreamHandleBrew.cpp | 45 static void socketStreamConnectCallback(void* user, int nError) 47 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user); 57 static void getHostByNameCallback(void* user) 59 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user); 69 static void socketReadableCallback(void* user) 71 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user);
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Driver4.java | 70 static String userProperty = "user"; 82 * Check for user and password, except for datasource = 83 * data1 which is set up not to require a user/password 92 String user = (String) info.get(userProperty); local 94 if (user == null || password == null) { 98 if (!user.equals(validuser)
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/ |
HelloLicenseServlet.java | 3 * program logs the user in with OpenID, fetches their license state with OAuth, 42 * user IDs 63 User user = userService.getCurrentUser(); local 66 user.getEmail(), 71 // Send a signed request for the user's license state. 80 URLEncoder.encode(user.getFederatedIdentity(), "UTF-8") 105 } else { // The user isn't logged in.
|