HomeSort by: relevance | last modified time | path
    Searched refs:fetchlimit (Results 1 - 7 of 7) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/target/
target.c 65 unsigned int fetchlimit,
81 /* We want fetchlimit chars, so we might as well read them all in
83 unsigned int fetchlen = std::min ((unsigned) len, fetchlimit);
103 but not so large as to be slow if fetchlimit happens to be large.
104 So we choose the minimum of 8 and fetchlimit. We used to use 200
107 chunksize = std::min (8u, fetchlimit);
111 nfetch = std::min ((unsigned long) chunksize, fetchlimit - bufsize);
154 && bufptr - buffer->get () < fetchlimit * width /* no overrun */
target.h 80 WIDTH bytes each. Fetch at most FETCHLIMIT characters. BUFFER
85 If LEN > 0, reads the lesser of LEN or FETCHLIMIT characters
89 the first null byte) up to a maximum of FETCHLIMIT characters. Set
90 FETCHLIMIT to UINT_MAX to read as many characters as possible from
98 unsigned int fetchlimit,
  /src/external/gpl3/gdb.old/dist/gdb/target/
target.c 65 unsigned int fetchlimit,
81 /* We want fetchlimit chars, so we might as well read them all in
83 unsigned int fetchlen = std::min ((unsigned) len, fetchlimit);
103 but not so large as to be slow if fetchlimit happens to be large.
104 So we choose the minimum of 8 and fetchlimit. We used to use 200
107 chunksize = std::min (8u, fetchlimit);
111 nfetch = std::min ((unsigned long) chunksize, fetchlimit - bufsize);
154 && bufptr - buffer->get () < fetchlimit * width /* no overrun */
target.h 80 WIDTH bytes each. Fetch at most FETCHLIMIT characters. BUFFER
85 If LEN > 0, reads the lesser of LEN or FETCHLIMIT characters
89 the first null byte) up to a maximum of FETCHLIMIT characters. Set
90 FETCHLIMIT to UINT_MAX to read as many characters as possible from
98 unsigned int fetchlimit,
  /src/external/mpl/bind/dist/bin/tests/system/fetchlimit/
tests.sh 97 info=$(rndccmd 10.53.0.3 fetchlimit | grep 10.53.0.4 | sed 's/.*quota .*(\([0-9]*\).*atr \([.0-9]*\).*/\2 \1/')
138 info=$(rndccmd 10.53.0.3 fetchlimit | grep 10.53.0.4 | sed 's/.*quota .*(\([0-9]*\).*atr \([.0-9]*\).*/\2 \1/')
161 info=$(rndccmd 10.53.0.3 fetchlimit | grep 10.53.0.4 | sed 's/.*quota .*(\([0-9]*\).*atr \([.0-9]*\).*/\2 \1/')
186 allowed=$(rndccmd 10.53.0.3 fetchlimit | awk '/lamesub/ { print $6 }')
  /src/external/gpl3/gdb/dist/gdb/
valprint.c 2721 unsigned int fetchlimit; /* Maximum number of chars to print. */
2737 fetchlimit = (len == -1
2741 err = target_read_string (addr, len, width, fetchlimit,
2746 /* We now have either successfully filled the buffer to fetchlimit,
2720 unsigned int fetchlimit; \/* Maximum number of chars to print. *\/ local
  /src/external/gpl3/gdb.old/dist/gdb/
valprint.c 2647 unsigned int fetchlimit; /* Maximum number of chars to print. */
2663 fetchlimit = (len == -1
2667 err = target_read_string (addr, len, width, fetchlimit,
2672 /* We now have either successfully filled the buffer to fetchlimit,
2646 unsigned int fetchlimit; \/* Maximum number of chars to print. *\/ local

Completed in 30 milliseconds