HomeSort by relevance Sort by last modified time
    Searched defs:user (Results 251 - 275 of 593) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclientsettings.h 44 void set_user(const std::string& user) { user_ = user; }
62 const std::string& user() const { return user_; } function in class:buzz::XmppUserSettings
103 void set_proxy_user(const std::string& user) { proxy_user_ = user; }
  /external/chromium_org/third_party/libxslt/libexslt/
math.c 71 void *user = NULL; local
79 /* We need to delay the freeing of value->user */
81 user = ctxt->value->user;
83 ctxt->value->user = NULL;
92 if (user != NULL)
93 xmlFreeNodeList((xmlNodePtr)user);
140 void *user = NULL; local
147 /* We need to delay the freeing of value->user */
149 user = ctxt->value->user
220 void *user = NULL; local
300 void *user = NULL; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_vbo.c 106 /* NOTE: user buffers with temporary storage count as mapped by GPU */
222 boolean user; local
226 user = (nv30->vbo_user & (1 << ve->vertex_buffer_index));
239 PUSH_RESRC(push, NV30_3D(VTXBUF(i)), user ? BUFCTX_VTXTMP : BUFCTX_VTXBUF,
546 /* For picking only a few vertices from a large user buffer, push is better,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 142 void rc_vert_fc(struct radeon_compiler *compiler, void *user);
143 void r300_vertex_program_dump(struct radeon_compiler *compiler, void *user);
149 void (*run)(struct radeon_compiler *c, void *user); /* The main entrypoint. */
150 void *user; /* Optional parameter which is passed to the run function. */ member in struct:radeon_compiler_pass
170 void rc_validate_final_shader(struct radeon_compiler *c, void *user);
  /external/chromium_org/third_party/openssl/openssl/apps/
srp.c 85 "usage: srp [args] [user] \n",
91 " -add add an user and srp verifier\n",
92 " -modify modify the srp verifier of an existing user\n",
93 " -delete delete user from verifier file\n",
94 " -list list user\n",
96 " -userinfo arg additional info to be set for user\n",
170 print_entry(db, bio, userindex, verbose, "User entry");
211 static char *srp_verify_user(const char *user, const char *srp_verifier,
220 cb_tmp.prompt_info = user;
225 VERBOSE BIO_printf(bio,"Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",user,srp_verifier,srp_ (…)
274 char * user = NULL; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/srp/
srp_vfy.c 416 /* it is a user .... */
441 /* this means that we want to simulate a default user */
478 SRP_user_pwd *user; local
487 user = sk_SRP_user_pwd_value(vb->users_pwd, i);
488 if (strcmp(user->id,username)==0)
489 return user;
496 /* if the user is unknown we set parameters as well if we have a seed_key */
498 if ((user = SRP_user_pwd_new()) == NULL)
501 SRP_user_pwd_set_gN(user,vb->default_g,vb->default_N);
503 if (!SRP_user_pwd_set_ids(user,username,NULL)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 36 private final CodeAddress user; field in class:SwitchData
55 * @param user {@code non-null;} address representing the instruction that
61 public SwitchData(SourcePosition position, CodeAddress user,
65 if (user == null) {
66 throw new NullPointerException("user == null");
87 this.user = user;
103 int baseAddress = user.getAddress();
149 return new SwitchData(getPosition(), user, cases, targets);
180 int baseAddress = user.getAddress()
    [all...]
  /external/iproute2/include/linux/netfilter/
x_tables.h 18 } user; member in union:xt_entry_match::__anon19267
41 } user; member in union:xt_entry_target::__anon19270
58 .target.u.user = { \
  /external/iptables/include/linux/netfilter/
x_tables.h 18 } user; member in union:xt_entry_match::__anon19513
41 } user; member in union:xt_entry_target::__anon19516
58 .target.u.user = { \
  /external/kernel-headers/original/asm-arm/
user.h 7 can understand it and provide useful information to the user (under
12 the contents of the user struct to find out what the floating point
15 UPAGE: 1 page consisting of a user struct that tells gdb what is present
21 current->brk to pick up all of the user variables, plus any memory
49 /* When the kernel dumps core, it starts by dumping the user struct -
52 struct user{ struct
73 char u_comm[32]; /* User command that was responsible */
85 * User specific VFP registers. If only VFPv2 is present, registers 16 to 31
94 * VFP exception registers exposed to user space during signal delivery.
  /external/kernel-headers/original/asm-x86/
user_32.h 6 can understand it and provide useful information to the user (under
11 the contents of the user struct to find out what the floating point
14 UPAGE: 1 page consisting of a user struct that tells gdb what is present
20 current->brk to pick up all of the user variables, plus any memory
73 * is still the layout used by user mode (the new
87 /* When the kernel dumps core, it starts by dumping the user struct -
90 struct user{ struct
113 char u_comm[32]; /* User command that was responsible */
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_vbo.c 106 /* NOTE: user buffers with temporary storage count as mapped by GPU */
222 boolean user; local
226 user = (nv30->vbo_user & (1 << ve->vertex_buffer_index));
239 PUSH_RESRC(push, NV30_3D(VTXBUF(i)), user ? BUFCTX_VTXTMP : BUFCTX_VTXBUF,
546 /* For picking only a few vertices from a large user buffer, push is better,
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 142 void rc_vert_fc(struct radeon_compiler *compiler, void *user);
143 void r300_vertex_program_dump(struct radeon_compiler *compiler, void *user);
149 void (*run)(struct radeon_compiler *c, void *user); /* The main entrypoint. */
150 void *user; /* Optional parameter which is passed to the run function. */ member in struct:radeon_compiler_pass
170 void rc_validate_final_shader(struct radeon_compiler *c, void *user);
  /external/netperf/
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/openssl/apps/
srp.c 85 "usage: srp [args] [user] \n",
91 " -add add an user and srp verifier\n",
92 " -modify modify the srp verifier of an existing user\n",
93 " -delete delete user from verifier file\n",
94 " -list list user\n",
96 " -userinfo arg additional info to be set for user\n",
170 print_entry(db, bio, userindex, verbose, "User entry");
211 static char *srp_verify_user(const char *user, const char *srp_verifier,
220 cb_tmp.prompt_info = user;
225 VERBOSE BIO_printf(bio,"Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n",user,srp_verifier,srp_ (…)
274 char * user = NULL; local
    [all...]
  /external/openssl/crypto/srp/
srp_vfy.c 416 /* it is a user .... */
441 /* this means that we want to simulate a default user */
478 SRP_user_pwd *user; local
487 user = sk_SRP_user_pwd_value(vb->users_pwd, i);
488 if (strcmp(user->id,username)==0)
489 return user;
496 /* if the user is unknown we set parameters as well if we have a seed_key */
498 if ((user = SRP_user_pwd_new()) == NULL)
501 SRP_user_pwd_set_gN(user,vb->default_g,vb->default_N);
503 if (!SRP_user_pwd_set_ids(user,username,NULL)
    [all...]
  /external/ppp/pppd/
upap.c 2 * upap.c - User/Password Authentication Protocol.
149 upap_authwithpeer(unit, user, password)
151 char *user, *password;
156 u->us_user = user;
157 u->us_userlen = strlen(user);
401 * Parse user/passwd.
621 char *user, *pwd, *msg; local
649 user = (char *) (p + 1);
653 printer(arg, " user=");
654 print_string(user, ulen, printer, arg)
    [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/smackx/
PrivateDataManager.java 124 * The user to get and set private data for. In most cases, this value should
128 private String user; field in class:PrivateDataManager
146 * Creates a new private data manager for a specific user (special case). Most
147 * servers only support getting and setting private data for the user that
155 * @param user the XMPP address of the user to get and set private data for.
157 public PrivateDataManager(Connection connection, String user) {
162 this.user = user;
192 // Address the packet to the other account if user has been set
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_config.c 148 conf->fragm_threshold = -1; /* user driver default: 2346 */
382 static void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
384 os_free(user->identity);
385 os_free(user->password);
386 os_free(user);
403 struct hostapd_eap_user *user, *prev_user; local
422 user = conf->eap_user;
423 while (user) {
424 prev_user = user;
425 user = user->next
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server.c 27 static void eap_user_free(struct eap_user *user);
81 * eap_user_get - Fetch user information from the database
83 * @identity: Identity (User-Name) of the user
85 * @phase2: 0 = EAP phase1 user, 1 = EAP phase2 (tunneled) user
88 * This function is used to fetch user information for EAP. The user will be
89 * selected based on the specified identity. sm->user and
90 * sm->user_eap_method_index are updated for the new user when a matching use
96 struct eap_user *user; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 142 // create a new user to use for testing
146 assertNotSame("Current calling user id should not be the new guest user",
158 assertNotSame("Current calling user id should not be the new guest user",
241 for (UserInfo user : um.getUsers()) {
242 if (user.id == userHandle) {
257 // create a new user to use for testing
258 UserInfo user = um.createUser("TestUser1", UserInfo.FLAG_GUEST); local
259 assertTrue(user != null)
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardActivityLauncher.java 112 // When they do, user sees the system's ResolverActivity which lets them choose
146 * Launches the said intent for the current foreground user.
191 // Create a runnable to start the activity and ask the user to enter their
216 final UserHandle user = new UserHandle(UserHandle.USER_CURRENT); local
218 getContext().startActivityAsUser(intent, options, user);
238 user.getIdentifier());
  /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...]
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ActivityTestMain.java 65 int user = res.getInt("user", -1); local
67 "Receiver executed as user "
68 + (user >= 0 ? Integer.toString(user) : "unknown"),
199 int user = res != null ? res.getInt("user", -1) : -1;
201 "Provider executed as user "
202 + (user >= 0 ? Integer.toString(user) : "unknown")
    [all...]

Completed in 1339 milliseconds

<<11121314151617181920>>