Searched refs:tok (Results 26 - 50 of 56) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dutil_sid.c294 pstring tok; local
313 if (!next_token(&p, tok, "-", sizeof(tok))) {
320 sidout->sid_rev_num = (uint8)strtoul(tok, NULL, 10);
322 if (!next_token(&p, tok, "-", sizeof(tok))) {
329 ia = (uint32)strtoul(tok, NULL, 10);
341 while(next_token(&p, tok, "-", sizeof(tok)) &&
347 sid_append_rid(sidout, (uint32)strtoul(tok, NUL
[all...]
H A Dutil_sock.c159 fstring tok; local
161 while (next_token(&options,tok," \t,", sizeof(tok))) {
167 if ((p = strchr_m(tok,'='))) {
174 if (strequal(socket_options[i].name,tok))
178 DEBUG(0,("Unknown socket option %s\n",tok));
191 DEBUG(0,("syntax error - %s does not take a value\n",tok));
202 DEBUG(0,("Failed to set socket option %s (Error %s)\n",tok, strerror(errno) ));
H A Dutil_file.c181 BOOL setfilepwpos(void *vp, SMB_BIG_UINT tok) argument
183 return !sys_fseek((FILE *)vp, (SMB_OFF_T)tok, SEEK_SET);
H A Dutil_str.c831 pstring tok; local
837 while (next_token(&p,tok,LIST_SEP,sizeof(tok))) {
839 if (strcmp(tok,s) == 0)
842 if (StrCaseCmp(tok,s) == 0)
1580 pstring tok; local
1595 while (next_token(&str, tok, sep, sizeof(tok))) {
1609 list[num] = SMB_STRDUP(tok);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dehci.h366 #define DBGP_PID_SET(data,tok) (((data)<<8)|(tok))
391 #define QTD_LENGTH(tok) (((tok)>>16) & 0x7fff)
393 #define QTD_CERR(tok) (((tok)>>10) & 0x3)
394 #define QTD_PID(tok) (((tok)>>8) & 0x3)
595 #define EHCI_ITD_LENGTH(tok) (((tok)>>1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/misc/
H A Dlnstat_util.c122 char *tok; local
125 tok = strtok(buf, " \t\n");
128 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
131 tok = strtok(NULL, " \t\n");
132 if (!tok) {
H A Dssfilter.y144 char *tok, *cp = *ptr;
153 tok = cp;
159 for (tp = cp; tp != tok; tp--)
162 tok++;
171 return tok;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Dutils.c182 const char *s, *tok = NULL; local
238 tok = s + 1;
243 ret = in4_pton(tok ? tok : s, srclen + (int)(s - tok), d, delim, &s);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/web/
H A Dcgi.c110 char *p, *s, *tok; local
167 for (tok=strtok(s,"&;");tok;tok=strtok(NULL,"&;")) {
168 p = strchr_m(tok,'=');
173 variables[num_variables].name = SMB_STRDUP(tok);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dserver.c244 fstring tok; local
252 for (ptr=ports; next_token(&ptr, tok, NULL, sizeof(tok)); ) {
253 unsigned port = atoi(tok);
287 fstring tok; local
292 for (ptr=ports; next_token(&ptr, tok, NULL, sizeof(tok)); ) {
293 unsigned port = atoi(tok);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/lib/
H A Dxmltok_impl.c226 int tok; local
240 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
254 return tok;
264 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
273 return tok;
610 int tok = PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, &ptr); local
611 if (tok <= 0) {
612 if (tok == XML_TOK_INVALID)
614 return tok;
975 int tok; local
1281 int tok = PREFIX(scanPercent)(enc, ptr + MINBPC(enc), local
[all...]
H A Dxmlparse.c331 const char *end, int tok, const char *next, const char **nextPtr,
2051 int tok = XmlContentTok(encoding, start, end, &next); local
2052 switch (tok) {
2090 int tok; local
2093 tok = XmlContentTok(encoding, start, end, &next);
2096 switch (tok) {
2173 int tok = XmlContentTok(enc, s, end, &next); local
2175 switch (tok) {
3113 int tok = XmlCdataSectionTok(enc, s, end, &next); local
3115 switch (tok) {
3233 int tok; local
3487 int tok; local
3555 int tok; local
3598 int tok; local
3634 int tok = XmlPrologTok(encoding, s, end, &next); local
3640 doProlog(XML_Parser parser, const ENCODING *enc, const char *s, const char *end, int tok, const char *next, const char **nextPtr, XML_Bool haveMore) argument
4625 int tok = XmlPrologTok(encoding, s, end, &next); local
4714 int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); local
4759 int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); local
4784 int tok; local
4833 int tok = XmlAttributeValueTok(enc, ptr, end, &next); local
4998 int tok = XmlEntityValueTok(enc, entityTextPtr, entityTextEnd, &next); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/sam/
H A Didmap_rid.c54 fstring tok; local
78 while (next_token(&init_param, tok, LIST_SEP, sizeof(tok))) {
80 p = tok;
90 if (!next_token(&p, tok, "=", sizeof(tok))) {
96 fstrcpy(trust.dom[trust.number].name, tok);
120 if (!next_token(&p, tok, "-", sizeof(tok))) {
126 trust.dom[trust.number].min_id = atoi(tok);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dnamequery.c948 pstring tok; local
967 while (next_token(&ptr, tok, " ", sizeof(tok))) {
969 char *p = strchr(tok, ':');
974 (*return_iplist)[i].ip = *interpret_addr2(tok);
1017 fstring tok; local
1080 while (next_token(&ptr, tok, LIST_SEP, sizeof(tok))) {
1081 if((strequal(tok, "host") || strequal(tok, "host
[all...]
H A Dlibsmbclient.c2988 fstring tok; local
3036 if (!next_token(&cp, tok, "/", sizeof(fstring))) {
3040 if (StrnCaseCmp(tok, "ALLOWED", strlen("ALLOWED")) == 0) {
3042 } else if (StrnCaseCmp(tok, "DENIED", strlen("DENIED")) == 0) {
3050 if (!(next_token(&cp, tok, "/", sizeof(fstring)) &&
3051 sscanf(tok, "%i", &aflags))) {
3055 if (!next_token(&cp, tok, "/", sizeof(fstring))) {
3059 if (strncmp(tok, "0x", 2) == 0) {
3060 if (sscanf(tok, "%i", &amask) != 1) {
3067 if (strcmp(tok,
3127 fstring tok; local
3275 fstring tok; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_hashlimit.c217 char *tok; local
223 for (tok = strtok(arg, ",|");
224 tok;
225 tok = strtok(NULL, ",|")) {
226 if (!strcmp(tok, "dstip"))
228 else if (!strcmp(tok, "srcip"))
230 else if (!strcmp(tok, "srcport"))
232 else if (!strcmp(tok, "dstport"))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Ddfa.c1088 static token tok; /* Lookahead token. */ variable
1185 if ((tok >= 0 && tok < NOTCHAR) || tok >= CSET || tok == BACKREF
1186 || tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
1188 || tok == ANYCHAR || tok
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/
H A Dexpr.h118 #define for_all_properties(sym, st, tok) \
120 if (st->type == (tok))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/
H A Dexpr.h125 #define for_all_properties(sym, st, tok) \
127 if (st->type == (tok))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dexpr.h155 #define for_all_properties(sym, st, tok) \
157 if (st->type == (tok))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/doc/
H A Dapibuild.py423 tok = "" variable in class:CLexer
437 tok = tok + line
442 self.last = ('string', tok)
448 tok = "" variable in class:CLexer
460 if tok != "":
461 tok = tok + "\n"
462 tok = tok
562 tok = self.tokens[0] variable in class:CLexer
2018 tok = token variable in class:docBuilder
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/client/
H A Dclient.c48 static int process_tok(pstring tok);
2766 static int process_tok(pstring tok) argument
2770 int tok_len = strlen(tok);
2773 if (strequal(commands[i].name,tok)) {
2777 } else if (strnequal(commands[i].name, tok, tok_len)) {
2836 pstring tok; local
2853 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
2855 if ((i = process_tok(tok)) >= 0) {
2858 d_printf("%s: command abbreviation ambiguous\n",tok);
3102 pstring tok; local
[all...]
H A Dclitar.c42 static int clipfind(char **aret, int ret, char *tok);
1446 static int clipfind(char **aret, int ret, char *tok) argument
1452 while(strchr_m("/\\.", *tok))
1453 tok++;
1462 if (!strslashcmp(pkey, tok))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/rc/
H A Dusb_hotplug.c772 char *tok = NULL; local
781 tok = strtok(physdevpath, "/");
783 while (tok != NULL) {
785 sscanf(tok, "%d-%d", &root_hub_num, &usb_lport);
789 tok = strtok(NULL, "/");
792 if (tok && (root_hub_num != -1) && (usb_lport != -1)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dsexp.c385 gcry_sexp_find_token( const gcry_sexp_t list, const char *tok, size_t toklen ) argument
394 toklen = strlen(tok);
406 if ( n == toklen && !memcmp( p, tok, toklen ) )

Completed in 227 milliseconds

123