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

1 2 3 4 5 6 7

  /onnv/onnv-gate/usr/src/lib/libcommputil/common/
commp_util.c 46 commp_skip_white_space(const char **begin, const char *end)
48 while (*begin < end) {
49 if (!isspace(**begin))
51 (*begin)++;
62 commp_find_token(const char **begin, const char **current, const char *end,
65 *current = *begin;
74 if (*current == *begin)
84 commp_atoi(const char *begin, const char *end, int *num)
89 while (begin < end) {
90 if (isdigit(*begin)) {
    [all...]
sdp_parse.c 48 sdp_parse_version(int *version, const char *begin, const char *end,
51 if (*begin++ != COMMP_EQUALS || commp_atoi(begin, end, version) != 0)
63 sdp_parse_name(char **name, const char *begin, const char *end,
68 if (*begin++ != COMMP_EQUALS) {
75 len = end - begin;
79 COMMP_COPY_STR(*name, begin, len);
95 sdp_parse_info(char **info, const char *begin, const char *end,
100 if (*begin++ != COMMP_EQUALS) {
107 len = end - begin;
    [all...]
  /onnv/onnv-gate/usr/src/stand/lib/tcp/
tcp_sack.c 51 * tcp_seq begin: starting seq num of the new blk.
56 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num)
63 head[0].begin = begin;
88 if (SEQ_LT(end, head[i].begin) || SEQ_GT(begin, head[i].end)) {
90 tmp[j].begin = head[i].begin;
94 } else if (SEQ_GEQ(begin, head[i].begin) &
    [all...]
tcp_sack.h 44 tcp_seq begin; member in struct:sack_blk
52 tcp_seq begin; member in struct:notsack_blk
  /onnv/onnv-gate/usr/src/uts/common/inet/tcp/
tcp_sack.c 46 * tcp_seq begin: starting seq num of the new blk.
51 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num)
58 head[0].begin = begin;
83 if (SEQ_LT(end, head[i].begin) || SEQ_GT(begin, head[i].end)) {
85 tmp[j].begin = head[i].begin;
89 } else if (SEQ_GEQ(begin, head[i].begin) &
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/include/
db_shash.h 20 * begin: address of the beginning of the hash table.
33 #define HASHLOOKUP(begin, type, field, elt, r, n, hash, cmp) do { \
38 __bucket = &begin[__ndx]; \
50 * begin: the beginning address of the hash table.
57 #define HASHINSERT(begin, type, field, elt, n, hash) do { \
62 __bucket = &begin[__ndx]; \
69 * begin: address of the beginning of the hash table.
78 #define HASHREMOVE(begin, type, field, elt, n, hash, cmp) { \
84 __bucket = &begin[__ndx]; \
85 HASHLOOKUP(begin, type, field, elt, __entp, n, hash, cmp);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/latencytop/common/
table.c 172 parse_config_cmd(char *begin, lt_parser_t *parser)
181 if (*begin == '\0') {
185 for (tmp = begin;
192 if (strcmp("disable_cause", begin) == 0) {
197 begin);
201 begin = tmp+1;
202 while (isspace(*begin)) {
203 ++begin;
207 lt_strdup(begin));
211 "Unknown command: %s\n", begin);
489 char *begin, *end; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/edit/
completion.c 201 char *av[2], *begin , *dir=0; local
247 begin = out = find_begin(outbuff,last,0,&var);
278 if(*begin=='~' && !strchr(begin,'/'))
287 char *cp=begin, *left=0, *saveout=".";
292 if(!var && !strchr(ap->argval,'/') && (((cp==outbuff&&sh.nextprompt==1) || (strchr(";&|(",size)) && (cp==outbuff+1||size=='('||cp[-2]!='>') && *begin!='~' )))
302 begin += (dir-begin);
308 if(begin>outbuff && (begin[-1]=='"' || begin[-1]=='\'')
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/db/
db_shash.c 115 __db_hashinit(begin, nelements)
116 void *begin;
122 headp = (struct hash_head *)begin;
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/dtraceUtil/
tst.InvalidTraceName4.d.ksh 46 $dtrace -n begin
  /onnv/onnv-gate/usr/src/lib/sun_fc/common/
FCSyseventBridge.cc 57 adapterAddEventListeners.insert(adapterAddEventListeners.begin(),
69 adapterEventListeners.insert(adapterEventListeners.begin(), listener);
81 adapterPortEventListeners.insert(adapterPortEventListeners.begin(),
94 adapterDeviceEventListeners.insert(adapterDeviceEventListeners.begin(),
107 targetEventListeners.insert(targetEventListeners.begin(), listener);
120 for (Iter tmp = adapterAddEventListeners.begin();
139 for (Iter tmp = adapterEventListeners.begin();
158 for (Iter tmp = adapterPortEventListeners.begin();
177 for (Iter tmp = adapterDeviceEventListeners.begin();
196 for (Iter tmp = targetEventListeners.begin();
    [all...]
Listener.cc 59 listeners.insert(listeners.begin(), this);
74 for (ListenerIterator tmp = listeners.begin();
99 for (ListenerIterator tmp = listeners.begin();
  /onnv/onnv-gate/usr/src/lib/fm/topo/libtopo/common/
topo_subr.c 130 env_process_value(topo_hdl_t *thp, const char *begin, const char *end)
136 while (begin < end && isspace(*begin))
137 begin++;
139 while (begin < end && isspace(*(end - 1)))
142 if (begin >= end)
145 count = end - begin;
151 (void) snprintf(buf, count, "%s", begin);
323 topo_cleanup_auth_str(topo_hdl_t *thp, const char *begin)
331 end = begin + strlen(begin)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/loadkeys/type_101/
neaten.sh 35 # markrow file begin end label
37 begin="$2"
42 \$2 >= $begin && \$2 <= $end && done == 0 {
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/eg/
RunMeFirst 16 if (/^begin\s+\d+\s+(.+)$/) {
  /onnv/onnv-gate/usr/src/lib/libadm/common/
ckdate.c 107 int begin = -1; local
109 if (!(ptr = p_ndigit(string, &begin, ndig)))
111 if (begin >= llim && begin <= ulim)
122 int begin = -1; local
147 if (!(ptr = p_ndigit(string, &begin, iday)))
150 if (begin >= llim && begin <= ulim)
ckitem.c 189 getnum(char *strval, int max, int *begin, int *end)
194 *begin = *end = 0;
208 if (!*begin && (*pt == '-')) {
209 *begin = n;
216 } else if (*begin) {
220 *begin = n;
225 *end = *begin;
226 return ((*begin <= *end) ? 0 : 1);
234 int begin, end; local
254 if (getnum(strval, (int)menup->nchoices, &begin,
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdscp/
libdscp.c 367 int begin; local
413 for (begin = -1, i = 0; i < size; i++) {
415 begin = i;
421 if (begin < 0) {
426 for (end = size - 1, i = begin; i < size; i++) {
434 len = end - begin;
437 if (begin > 0) {
438 (void) memmove(ifname, &ifname[begin], len);
  /onnv/onnv-gate/usr/src/uts/common/inet/
tcp_sack.h 39 tcp_seq begin; member in struct:sack_blk
47 tcp_seq begin; member in struct:notsack_blk
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
NCVector.h 53 iterator begin() { return ptr_; } function in class:SP_NAMESPACE::NCVector
54 const_iterator begin() const { return ptr_; } function in class:SP_NAMESPACE::NCVector
StringOf.h 40 iterator begin() { return ptr_; } function in class:SP_NAMESPACE::String
41 const_iterator begin() const { return ptr_; } function in class:SP_NAMESPACE::String
Vector.h 52 iterator begin() { return ptr_; } function in class:SP_NAMESPACE::Vector
53 const_iterator begin() const { return ptr_; } function in class:SP_NAMESPACE::Vector
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/support/
utf8.c 523 char *begin; local
529 begin = str ? str : *last;
531 begin += krb5int_utf8_strspn(begin, sep);
533 if (*begin == '\0') {
538 end = &begin[krb5int_utf8_strcspn(begin, sep)];
548 return begin;
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
ListParser.java 77 int begin = 0; local
79 initList(str, begin, end);
83 int begin, end = str.length(); local
85 begin = offset;
87 begin = end;
89 initList(str, begin, end);
92 public ListParser(String str, int begin, int end) {
96 if (begin < 0)
97 begin = 0;
98 if (begin > end
    [all...]
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/i86pc/chip/
chip_smbios.c 400 chip_cleanup_smbios_str(topo_mod_t *mod, const char *begin, int str_type)
408 end = begin + strlen(begin);
410 while (begin < end && isspace(*begin))
411 begin++;
412 while (begin < end && isspace(*(end - 1)))
415 if (begin >= end)
418 cp = begin;
442 topo_mod_strfree(mod, (char *)begin);
    [all...]

Completed in 1901 milliseconds

1 2 3 4 5 6 7