Searched refs:pair (Results 1 - 25 of 724) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/xz/
H A Dfile_io.c50 static bool io_write_buf(file_pair *pair, const uint8_t *buf, size_t size);
156 io_copy_attrs(const file_pair *pair) argument
168 if (fchown(pair->dest_fd, pair->src_st.st_uid, -1) && warn_fchown)
170 pair->dest_name, strerror(errno));
174 if (fchown(pair->dest_fd, -1, pair->src_st.st_gid)) {
176 pair->dest_name, strerror(errno));
185 mode = ((pair->src_st.st_mode & 0070) >> 3)
186 & (pair
289 io_open_src_real(file_pair *pair) argument
518 static file_pair pair; local
546 io_close_src(file_pair *pair, bool success) argument
573 io_open_dest_real(file_pair *pair) argument
685 io_open_dest(file_pair *pair) argument
702 io_close_dest(file_pair *pair, bool success) argument
747 io_close(file_pair *pair, bool success) argument
796 io_read(file_pair *pair, io_buf *buf_union, size_t size) argument
838 io_pread(file_pair *pair, io_buf *buf, size_t size, off_t pos) argument
876 io_write_buf(file_pair *pair, const uint8_t *buf, size_t size) argument
918 io_write(file_pair *pair, const io_buf *buf, size_t size) argument
[all...]
H A Dfile_io.h80 extern bool io_open_dest(file_pair *pair);
90 extern void io_close(file_pair *pair, bool success);
95 /// \param pair File pair having the source file open for reading
100 /// file zero is returned and pair->src_eof set to true.
102 extern size_t io_read(file_pair *pair, io_buf *buf, size_t size);
110 /// \param pair Seekable source file
118 extern bool io_pread(file_pair *pair, io_buf *buf, size_t size, off_t pos);
123 /// \param pair File pair havin
[all...]
H A Dcoder.c345 coder_init(file_pair *pair) argument
444 message_error("%s: %s", pair->src_name, message_strm(ret));
457 coder_normal(file_pair *pair) argument
464 lzma_action action = pair->src_eof ? LZMA_FINISH : LZMA_RUN;
477 if (strm.avail_in == 0 && !pair->src_eof) {
480 pair, &in_buf, IO_BUFFER_SIZE);
485 if (pair->src_eof)
494 if (opt_mode != MODE_TEST && io_write(pair, &out_buf,
514 if (opt_mode != MODE_TEST && io_write(pair,
524 if (strm.avail_in == 0 && !pair
587 coder_passthru(file_pair *pair) argument
616 file_pair *pair = io_open_src(filename); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/scripts/
H A DMakefile.am29 for pair in $(links); do \
30 target=`echo $$pair | sed 's/-.*$$//' | sed '$(transform)'` && \
31 link=`echo $$pair | sed 's/^.*-//' | sed '$(transform)'` && \
38 for pair in $(links); do \
39 target=`echo $$pair | sed 's/-.*$$//' | sed '$(transform)'` && \
40 link=`echo $$pair | sed 's/^.*-//' | sed '$(transform)'` && \
47 for pair in $(links); do \
48 link=`echo $$pair | sed 's/^.*-//' | sed '$(transform)'` && \
52 for pair in $(links); do \
53 link=`echo $$pair | se
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/arm-none-eabi/include/c++/4.6.1/bits/
H A Dstl_pair.h87 struct pair struct
96 // 265. std::pair::pair() effects overly restrictive
99 _GLIBCXX_CONSTEXPR pair() function in struct:pair
102 /** Two objects may be passed to a @c pair constructor to be copied. */
103 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
106 /** There is also a templated copy ctor for the @c pair class itself. */
108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p) argument
112 constexpr pair(cons
120 pair(_U1&& __x, const _T2& __y) function in struct:pair
125 pair(const _T1& __x, _U2&& __y) function in struct:pair
131 pair(_U1&& __x, _U2&& __y) function in struct:pair
135 pair(pair<_U1, _U2>&& __p) function in struct:pair
140 pair(piecewise_construct_t, function in struct:pair
163 operator =(const pair<_U1, _U2>& __p) argument
201 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
207 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
214 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
220 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
226 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
232 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pppd/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pppd/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pppd/pppd/plugins/radius/
H A Davpair.c26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/bits/
H A Dstl_pair.h96 struct pair struct
105 // 265. std::pair::pair() effects overly restrictive
108 _GLIBCXX_CONSTEXPR pair() function in struct:pair
111 /** Two objects may be passed to a @c pair constructor to be copied. */
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
115 /** There is also a templated copy ctor for the @c pair class itself. */
118 pair(const pair<_U1, _U2>& __p) argument
124 constexpr pair(cons argument
133 constexpr pair(_U1&& __x, const _T2& __y) function in struct:pair
138 constexpr pair(const _T1& __x, _U2&& __y) function in struct:pair
144 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
150 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
177 operator =(const pair<_U1, _U2>& __p) argument
214 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
220 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
227 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
233 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
239 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
245 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/include/c++/4.5.3/bits/
H A Dstl_pair.h69 /// pair holds two objects of arbitrary type.
71 struct pair struct
80 // 265. std::pair::pair() effects overly restrictive
83 pair() function in struct:pair
86 /** Two objects may be passed to a @c pair constructor to be copied. */
87 pair(const _T1& __a, const _T2& __b) function in struct:pair
94 pair(_U1&& __x, const _T2& __y) function in struct:pair
100 pair(const _T1& __x, _U2&& __y) function in struct:pair
107 pair(_U function in struct:pair
114 pair(const pair<_U1, _U2>& __p) argument
120 pair(pair<_U1, _U2>&& __p) function in struct:pair
154 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
160 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
167 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
173 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
179 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
185 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/include/c++/4.5.3/bits/
H A Dstl_pair.h69 /// pair holds two objects of arbitrary type.
71 struct pair struct
80 // 265. std::pair::pair() effects overly restrictive
83 pair() function in struct:pair
86 /** Two objects may be passed to a @c pair constructor to be copied. */
87 pair(const _T1& __a, const _T2& __b) function in struct:pair
94 pair(_U1&& __x, const _T2& __y) function in struct:pair
100 pair(const _T1& __x, _U2&& __y) function in struct:pair
107 pair(_U function in struct:pair
114 pair(const pair<_U1, _U2>& __p) argument
120 pair(pair<_U1, _U2>&& __p) function in struct:pair
154 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
160 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
167 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
173 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
179 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
185 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-test.c122 struct symbol *pair; local
125 pair = machine__find_kernel_symbol(&kallsyms, type, sym->start, NULL, NULL);
127 if (pair && pair->start == sym->start) {
129 if (strcmp(sym->name, pair->name) == 0) {
139 s64 skew = sym->end - pair->end;
144 sym->start, sym->name, sym->end, pair->end);
146 struct rb_node *nnd = rb_prev(&pair->rb_node);
152 pair = next;
157 sym->start, sym->name, pair
171 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
191 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/
H A Dbuiltin-test.c122 struct symbol *pair; local
125 pair = machine__find_kernel_symbol(&kallsyms, type, sym->start, NULL, NULL);
127 if (pair && pair->start == sym->start) {
129 if (strcmp(sym->name, pair->name) == 0) {
139 s64 skew = sym->end - pair->end;
144 sym->start, sym->name, sym->end, pair->end);
146 struct rb_node *nnd = rb_prev(&pair->rb_node);
152 pair = next;
157 sym->start, sym->name, pair
171 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
191 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/csharp/
H A DHashCursor.cs55 /// Insert the specified key/data pair into the database, unless a
56 /// key/data pair comparing equally to it already exists in the
59 /// <param name="pair">The key/data pair to be inserted</param>
61 /// Thrown if a matching key/data pair already exists in the database.
64 KeyValuePair<DatabaseEntry, DatabaseEntry> pair) {
65 base.AddUnique(pair);
68 /// Insert the specified key/data pair into the database.
70 /// <param name="pair">The key/data pair t
63 AddUnique( KeyValuePair<DatabaseEntry, DatabaseEntry> pair) argument
76 Add(KeyValuePair<DatabaseEntry, DatabaseEntry> pair, InsertLocation loc) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/csharp/
H A DHashCursor.cs55 /// Insert the specified key/data pair into the database, unless a
56 /// key/data pair comparing equally to it already exists in the
59 /// <param name="pair">The key/data pair to be inserted</param>
61 /// Thrown if a matching key/data pair already exists in the database.
64 KeyValuePair<DatabaseEntry, DatabaseEntry> pair) {
65 base.AddUnique(pair);
68 /// Insert the specified key/data pair into the database.
70 /// <param name="pair">The key/data pair t
63 AddUnique( KeyValuePair<DatabaseEntry, DatabaseEntry> pair) argument
76 Add(KeyValuePair<DatabaseEntry, DatabaseEntry> pair, InsertLocation loc) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/csharp/
H A DHashCursor.cs55 /// Insert the specified key/data pair into the database, unless a
56 /// key/data pair comparing equally to it already exists in the
59 /// <param name="pair">The key/data pair to be inserted</param>
61 /// Thrown if a matching key/data pair already exists in the database.
64 KeyValuePair<DatabaseEntry, DatabaseEntry> pair) {
65 base.AddUnique(pair);
68 /// Insert the specified key/data pair into the database.
70 /// <param name="pair">The key/data pair t
63 AddUnique( KeyValuePair<DatabaseEntry, DatabaseEntry> pair) argument
76 Add(KeyValuePair<DatabaseEntry, DatabaseEntry> pair, InsertLocation loc) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/netatalk-3.0.5/libevent/test/
H A Dtest-eof.c93 evutil_socket_t pair[2]; local
105 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
109 send(pair[0], test, (int)strlen(test)+1, 0);
110 shutdown(pair[0], SHUT_WR);
116 event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/netatalk-3.0.5/libevent/test/
H A Dtest-eof.c93 evutil_socket_t pair[2]; local
105 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
109 send(pair[0], test, (int)strlen(test)+1, 0);
110 shutdown(pair[0], SHUT_WR);
116 event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/libevent/test/
H A Dtest-eof.c93 evutil_socket_t pair[2]; local
105 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
109 send(pair[0], test, (int)strlen(test)+1, 0);
110 shutdown(pair[0], SHUT_WR);
116 event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/test/
H A Denv005.tcl41 foreach pair $rlist {
42 set cmd [lindex $pair 0]
43 set msg [lindex $pair 1]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/test/
H A Denv005.tcl41 foreach pair $rlist {
42 set cmd [lindex $pair 0]
43 set msg [lindex $pair 1]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/test/
H A Denv005.tcl41 foreach pair $rlist {
42 set cmd [lindex $pair 0]
43 set msg [lindex $pair 1]

Completed in 142 milliseconds

1234567891011>>