HomeSort by relevance Sort by last modified time
    Searched refs:userinfo (Results 1 - 25 of 25) sorted by null

  /external/quake/quake/src/QW/server/
sv_main.c 80 void SV_AcceptClient (netadr_t adr, int userid, char *userinfo);
227 memset (drop->userinfo, 0, sizeof(drop->userinfo));
298 strcpy (info, client->userinfo);
316 ClientReliableCheckBlock(cl, 24 + strlen(client->userinfo));
356 top = atoi(Info_ValueForKey (cl->userinfo, "topcolor"));
357 bottom = atoi(Info_ValueForKey (cl->userinfo, "bottomcolor"));
363 ping, cl->name, Info_ValueForKey (cl->userinfo, "skin"), top, bottom);
504 char userinfo[1024]; local
532 strncpy (userinfo, Cmd_Argv(4), sizeof(userinfo)-2)
    [all...]
sv_user.c 483 pmodel = atoi(Info_ValueForKey (host_client->userinfo, "pmodel"));
484 emodel = atoi(Info_ValueForKey (host_client->userinfo, "emodel"));
737 strncpy (t1, Info_ValueForKey (host_client->userinfo, "team"), 31);
804 t2 = Info_ValueForKey (client->userinfo, "team");
1052 Allow clients to change userinfo
1064 Info_Print (host_client->userinfo);
1077 strcpy(oldval, Info_ValueForKey(host_client->userinfo, Cmd_Argv(1)));
1079 Info_SetValueForKey (host_client->userinfo, Cmd_Argv(1), Cmd_Argv(2), MAX_INFO_STRING);
1081 // strncpy (host_client->name, Info_ValueForKey (host_client->userinfo, "name")
1086 if (!strcmp(Info_ValueForKey(host_client->userinfo, Cmd_Argv(1)), oldval)
    [all...]
server.h 132 char userinfo[MAX_INFO_STRING]; // infostring member in struct:client_s
143 // extracted from userinfo
sv_ccmds.c 632 Info_Print (host_client->userinfo);
pr_cmds.c 1178 noaim = Info_ValueForKey (svs.clients[i-1].userinfo, "noaim");
1573 value = Info_ValueForKey (svs.clients[e1-1].userinfo, key);
  /external/quake/quake/src/QW/client/
cl_main.c 216 Info_SetValueForStarKey (cls.userinfo, "*ip", NET_AdrToString(adr), MAX_INFO_STRING);
220 255, 255, 255, 255, PROTOCOL_VERSION, cls.qport, cls.challenge, cls.userinfo);
482 Info_Print (cl.players[i].userinfo);
525 Info_ValueForKey (cls.userinfo, "topcolor"),
526 Info_ValueForKey (cls.userinfo, "bottomcolor") );
586 Allow clients to change userinfo
631 Info_SetValueForKey (cls.userinfo, key, value, MAX_INFO_STRING);
639 Allow clients to change userinfo
646 Info_Print (cls.userinfo);
657 Info_SetValueForKey (cls.userinfo, Cmd_Argv(1), Cmd_Argv(2), MAX_INFO_STRING)
    [all...]
cvar.c 138 Info_SetValueForKey (cls.userinfo, var_name, value, MAX_INFO_STRING);
cl_parse.c 891 strcpy(s, Info_ValueForKey(player->userinfo, "skin"));
938 strncpy (player->name, Info_ValueForKey (player->userinfo, "name"), sizeof(player->name)-1);
939 player->topcolor = atoi(Info_ValueForKey (player->userinfo, "topcolor"));
940 player->bottomcolor = atoi(Info_ValueForKey (player->userinfo, "bottomcolor"));
941 if (Info_ValueForKey (player->userinfo, "*spectator")[0])
969 strncpy (player->userinfo, MSG_ReadString(), sizeof(player->userinfo)-1);
999 Info_SetValueForKey (player->userinfo, key, value, MAX_INFO_STRING);
client.h 62 char userinfo[MAX_INFO_STRING]; member in struct:player_info_s
169 // private userinfo for sending to masterless servers
170 char userinfo[MAX_INFO_STRING]; member in struct:__anon11523
sbar.c 426 strncpy(t, Info_ValueForKey(s->userinfo, "team"), 16);
972 if (!strncmp(Info_ValueForKey(cl.players[cl.playernum].userinfo,
1132 strncpy (team, Info_ValueForKey(s->userinfo, "team"), 4);
1244 strncpy (team, Info_ValueForKey(s->userinfo, "team"), 4);
1284 if (!strncmp(Info_ValueForKey(cl.players[cl.playernum].userinfo,
skin.c 50 s = Info_ValueForKey (sc->userinfo, "skin");
gl_rmisc.c 257 strcpy(s, Info_ValueForKey(player->userinfo, "skin"));
cl_demo.c 612 MSG_WriteString (&buf, player->userinfo);
gl_model.c     [all...]
model.c 1467 Info_SetValueForKey (cls.userinfo,
    [all...]
  /external/bluetooth/glib/gio/
gdummyfile.c 44 char *userinfo; member in struct:__anon2337
238 if (safe_strcmp (a->userinfo, b->userinfo) != 0)
508 g_free (decoded->userinfo);
626 authority = [ userinfo "@" ] host [ ":" port ]
633 decoded->userinfo = unescape_string (userinfo_start, userinfo_end, NULL);
634 if (decoded->userinfo == NULL)
730 if (decoded->userinfo)
732 /* userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) */
733 g_string_append_encoded (uri, decoded->userinfo, SUB_DELIM_CHARS ":")
    [all...]
  /external/openssl/apps/
srp.c 96 " -userinfo arg additional info to be set for user\n",
283 char * userinfo = NULL; local
352 else if (strcmp(*argv,"-userinfo") == 0)
355 userinfo= *(++argv);
613 (userinfo && (!(row[DB_srpinfo] = BUF_strdup(userinfo)))) ||
676 (userinfo && (!(row[DB_srpinfo] = BUF_strdup(userinfo)))))
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 30 * the various components (scheme, host, port, userinfo, path, query
44 * is stored as userinfo.
110 * userinfo can be composed of unreserved, escaped and these
119 /** If specified, stores the userinfo for this URI; otherwise null.
169 * accordingly - setting the scheme, userinfo, host,port, path, query
269 * @param p_userinfo the URI userinfo (cannot be specified if host
301 Utils.messages.createMessage(MsgKey.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
614 * Initialize the authority (userinfo, host and port) for this
629 String userinfo = null; local
631 // userinfo is everything up
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 32 * the various components (scheme, host, port, userinfo, path, query
46 * is stored as userinfo.
107 * userinfo can be composed of unreserved, escaped and these
116 /** If specified, stores the userinfo for this URI; otherwise null.
166 * accordingly - setting the scheme, userinfo, host,port, path, query
266 * @param p_userinfo the URI userinfo (cannot be specified if host
298 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
634 * Initialize the authority (userinfo, host and port) for this
649 String userinfo = null; local
651 // userinfo is everything up
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URITest.java 101 // IPv6 authority, with userinfo and port
288 assertNull("wrong userinfo", uri.getUserInfo());
382 assertEquals("wrong userinfo", "us:e@r", uri.getUserInfo());
400 private void construct1(String scheme, String userinfo, String host,
403 URI uri = new URI(scheme, userinfo, host, port, path, query,
475 // test if empty authority is parsed into undefined host, userinfo and
483 assertNull("wrong userinfo", uri.getUserInfo());
568 // different userinfo
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 178 milliseconds