Searched defs:begin (Results 1 - 25 of 65) sorted by relevance

123

/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.h45 * The begin field points to the first byte of raw
50 char *begin; member in struct:cfgdata
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dgetlist.c80 *begin; local
104 if (!(begin = Strdup(str))) {
108 copy = begin;
115 Free (begin);
191 Free (begin);
/illumos-gate/usr/src/lib/libcommputil/common/
H A Dcommp_util.c46 commp_skip_white_space(const char **begin, const char *end) argument
48 while (*begin < end) {
49 if (!isspace(**begin))
51 (*begin)++;
62 commp_find_token(const char **begin, const char **current, const char *end, argument
65 *current = *begin;
74 if (*current == *begin)
84 commp_atoi(const char *begin, const char *end, int *num) argument
89 while (begin < end) {
90 if (isdigit(*begin)) {
107 commp_strtoull(const char *begin, const char *end, uint64_t *num) argument
130 commp_strtoub(const char *begin, const char *end, uint8_t *num) argument
153 commp_atoui(const char *begin, const char *end, uint_t *num) argument
192 commp_time_to_secs(const char *begin, const char *end, uint64_t *num) argument
[all...]
H A Dsdp_parse_helper.c337 const char *begin; local
351 begin = current;
357 if (current != begin) {
358 if ((ret = add_value_to_list(list, begin,
359 current - begin, text)) != 0) {
H A Dsdp_parse.c48 sdp_parse_version(int *version, const char *begin, const char *end, argument
51 if (*begin++ != COMMP_EQUALS || commp_atoi(begin, end, version) != 0)
63 sdp_parse_name(char **name, const char *begin, const char *end, argument
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, argument
100 if (*begin++ != COMMP_EQUALS) {
107 len = end - begin;
125 sdp_parse_uri(char **uri, const char *begin, const char *end, uint_t *p_error) argument
154 sdp_parse_phone(sdp_list_t **phone, const char *begin, const char *end, uint_t *p_error) argument
197 sdp_parse_email(sdp_list_t **email, const char *begin, const char *end, uint_t *p_error) argument
249 sdp_parse_origin(sdp_origin_t **origin, const char *begin, const char *end, uint_t *p_error) argument
341 sdp_parse_time(sdp_time_t **time, const char *begin, const char *end, uint_t *p_error) argument
394 sdp_parse_connection(sdp_conn_t **conn, const char *begin, const char *end, uint_t *p_error) argument
524 sdp_parse_bandwidth(sdp_bandwidth_t **bw, const char *begin, const char *end, uint_t *p_error) argument
582 sdp_parse_repeat(sdp_time_t *time, const char *begin, const char *end, uint_t *p_error) argument
678 sdp_parse_zone(sdp_zone_t **zone, const char *begin, const char *end, uint_t *p_error) argument
747 sdp_parse_key(sdp_key_t **key, const char *begin, const char *end, uint_t *p_error) argument
805 sdp_parse_attribute(sdp_attr_t **attr, const char *begin, const char *end, uint_t *p_error) argument
865 sdp_parse_media(sdp_session_t *session, const char *begin, const char *end, uint_t *p_error) argument
990 sdp_handle_fields(sdp_description_t *description, sdp_session_t *_session, const char *begin, const char *end) argument
[all...]
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_sack.c45 * tcp_seq begin: starting seq num of the new blk.
50 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num) argument
57 head[0].begin = begin;
82 if (SEQ_LT(end, head[i].begin) || SEQ_GT(begin, head[i].end)) {
84 tmp[j].begin = head[i].begin;
88 } else if (SEQ_GEQ(begin, head[i].begin)
192 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
391 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp_sack.c51 * 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) argument
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)
198 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
398 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
H A Dtcp_sack.h44 tcp_seq begin; member in struct:sack_blk
52 tcp_seq begin; member in struct:notsack_blk
/illumos-gate/usr/src/cmd/oawk/
H A Dawk.g.y81 begin pa_stats end {
88 begin: label
90 | begin NL
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dlist.c46 * begin and end optionally specify objects other than the first and last
58 list_walk_init_range(mdb_walk_state_t *wsp, uintptr_t begin, uintptr_t end, argument
93 wsp->walk_addr = (begin == NULL
95 : begin + lwd->lw_offset);
H A Davl.c68 * begin and end optionally specify objects other than the first and last
80 avl_walk_init_range(mdb_walk_state_t *wsp, uintptr_t begin, uintptr_t end, argument
126 if (begin == NULL) {
138 wsp->walk_addr = begin + tree->avl_offset;
/illumos-gate/usr/src/uts/common/inet/
H A Dtcp_sack.h38 tcp_seq begin; member in struct:sack_blk
46 tcp_seq begin; member in struct:notsack_blk
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dsleep.c215 clock_t begin = times(&tt); local
216 if(begin==0)
220 while((times(&tt)-begin) < n);
/illumos-gate/usr/src/uts/common/syscall/
H A Dfcntl.c614 u_offset_t begin; local
623 begin = start > vattr.va_size ? vattr.va_size : start;
626 if (nbl_conflict(vp, NBL_WRITE, begin, length, 0,
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_subr.c106 env_process_value(topo_hdl_t *thp, const char *begin, const char *end) argument
112 while (begin < end && isspace(*begin))
113 begin++;
115 while (begin < end && isspace(*(end - 1)))
118 if (begin >= end)
121 count = end - begin;
127 (void) snprintf(buf, count, "%s", begin);
299 topo_cleanup_auth_str(topo_hdl_t *thp, const char *begin) argument
307 end = begin
[all...]
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/x86pi/
H A Dx86pi_subr.c623 x86pi_cleanup_smbios_str(topo_mod_t *mod, const char *begin, int str_type) argument
631 end = begin + strlen(begin);
633 while (begin < end && isspace(*begin))
634 begin++;
635 while (begin < end && isspace(*(end - 1)))
638 if (begin >= end)
641 cp = begin;
665 topo_mod_strfree(mod, (char *)begin);
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c523 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;
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Dcompletion.c201 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[
[all...]
/illumos-gate/usr/src/lib/libdscp/
H A Dlibdscp.c367 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);
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_form.c880 void *begin = attr->ar_debug_info_ptr; local
889 if (0 == _dwarf_string_valid(begin, end)) {
894 *return_str = (char *) (begin);
912 void*begin = dbg->de_debug_str.dss_data + offset; local
913 if (0 == _dwarf_string_valid(begin, end)) {
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Drdsv3_debug.c359 hrtime_t begin; member in struct:ratelimit_state
381 if (!rs->begin) {
382 rs->begin = current;
384 if (current < rs->begin + TICK_TO_NSEC(rs->interval)) {
388 rs->begin = 0;
/illumos-gate/usr/src/lib/libadm/common/
H A Dckitem.c191 getnum(char *strval, int max, int *begin, int *end) argument
196 *begin = *end = 0;
210 if (!*begin && (*pt == '-')) {
211 *begin = n;
218 } else if (*begin) {
222 *begin = n;
227 *end = *begin;
228 return ((*begin <= *end) ? 0 : 1);
236 int begin, end; local
256 if (getnum(strval, (int)menup->nchoices, &begin,
[all...]
H A Dcktime.c94 int begin = -1; local
95 if (!(ptr = p_ndig(string, &begin)))
97 if (begin >= llim && begin <= ulim)
/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdcdos.c51 Sfoff_t begin; member in struct:_dosdisc
93 if(offset <= dp->begin)
100 dummy.logical = dp->begin;
165 dp->begin +=n;
172 dp->begin += cp - (char*)buff-1;
176 dp->maptable[0].logical= dp->begin;
294 if(offset<=dp->begin)
/illumos-gate/usr/src/lib/libm/common/m9x/
H A D__fex_hdlr.c125 __fex_sync_with_libmtsk(int begin, int master) argument
131 if (begin) {

Completed in 101 milliseconds

123