HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 326 - 350 of 2626) sorted by null

<<11121314151617181920>>

  /external/oprofile/libutil/
op_list.h 157 * @param pos the &struct list_head to use as a loop counter.
160 #define list_for_each(pos, head) \
161 for (pos = (head)->next; pos != (head); pos = pos->next)
165 * @param pos the &struct list_head to use as a loop counter.
169 #define list_for_each_safe(pos, n, head) \
170 for (pos = (head)->next, n = pos->next; pos != (head);
    [all...]
  /external/wpa_supplicant/wpa_gui/
wpagui.ui.h 114 char buf[2048], *pos, *pos2; local
167 pos = strchr(buf, '\n');
168 if (pos)
169 *pos = '\0';
241 pos = buf;
242 while (*pos) {
243 pos2 = strchr(pos, '\n');
246 if (strcmp(pos, ctrl_iface) != 0)
247 adapterSelect->insertItem(pos);
249 pos = pos2 + 1
286 char buf[2048], *start, *end, *pos; local
584 char *pos = msg, *pos2; local
674 int pos = cmd.find(':'); local
688 int pos = sel.find(':'); local
    [all...]
userdatarequest.ui.h 17 char *tmp, *pos, *pos2; local
22 pos = strchr(tmp, '-');
23 if (pos == NULL) {
27 *pos++ = '\0';
29 pos2 = strchr(pos, ':');
36 networkid = atoi(pos);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_common.c 41 const u8 *pos; local
57 pos = (const u8 *) (hdr + 1);
59 if (*pos == EAP_TYPE_EXPANDED) {
67 pos++;
68 exp_vendor = WPA_GET_BE24(pos);
69 pos += 3;
70 exp_type = WPA_GET_BE32(pos);
71 pos += 4;
79 return pos;
81 if (vendor != EAP_VENDOR_IETF || *pos != eap_type)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpagui.ui.h 114 char buf[2048], *pos, *pos2; local
167 pos = strchr(buf, '\n');
168 if (pos)
169 *pos = '\0';
241 pos = buf;
242 while (*pos) {
243 pos2 = strchr(pos, '\n');
246 if (strcmp(pos, ctrl_iface) != 0)
247 adapterSelect->insertItem(pos);
249 pos = pos2 + 1
286 char buf[2048], *start, *end, *pos; local
582 char *pos = msg, *pos2; local
672 int pos = cmd.find(':'); local
686 int pos = sel.find(':'); local
    [all...]
userdatarequest.ui.h 17 char *tmp, *pos, *pos2; local
22 pos = strchr(tmp, '-');
23 if (pos == NULL) {
27 *pos++ = '\0';
29 pos2 = strchr(pos, ':');
36 networkid = atoi(pos);
  /external/wpa_supplicant_8/src/eap_common/
eap_common.c 41 const u8 *pos; local
57 pos = (const u8 *) (hdr + 1);
59 if (*pos == EAP_TYPE_EXPANDED) {
67 pos++;
68 exp_vendor = WPA_GET_BE24(pos);
69 pos += 3;
70 exp_type = WPA_GET_BE32(pos);
71 pos += 4;
79 return pos;
81 if (vendor != EAP_VENDOR_IETF || *pos != eap_type)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
wpagui.ui.h 114 char buf[2048], *pos, *pos2; local
167 pos = strchr(buf, '\n');
168 if (pos)
169 *pos = '\0';
241 pos = buf;
242 while (*pos) {
243 pos2 = strchr(pos, '\n');
246 if (strcmp(pos, ctrl_iface) != 0)
247 adapterSelect->insertItem(pos);
249 pos = pos2 + 1
286 char buf[2048], *start, *end, *pos; local
582 char *pos = msg, *pos2; local
672 int pos = cmd.find(':'); local
686 int pos = sel.find(':'); local
    [all...]
userdatarequest.ui.h 17 char *tmp, *pos, *pos2; local
22 pos = strchr(tmp, '-');
23 if (pos == NULL) {
27 *pos++ = '\0';
29 pos2 = strchr(pos, ':');
36 networkid = atoi(pos);
  /external/wpa_supplicant/
config_file.c 46 char *pos, *end, *sstart; local
51 pos = s;
54 while (*pos == ' ' || *pos == '\t' || *pos == '\r')
55 pos++;
58 if (*pos == '#' || *pos == '\n' || *pos == '\0')
65 sstart = os_strchr(pos, '"');
133 char buf[256], *pos, *pos2; local
193 char buf[256], *pos; local
248 char buf[256], *pos; local
    [all...]
eap_leap.c 72 const u8 *pos, *challenge, *identity, *password; local
84 pos = (const u8 *) (req + 1);
85 if (reqDataLen < sizeof(*req) + 4 || *pos != EAP_TYPE_LEAP) {
90 pos++;
92 if (*pos != LEAP_VERSION) {
94 "%d", *pos);
98 pos++;
100 pos++; /* skip unused byte */
102 challenge_len = *pos++;
111 challenge = pos;
146 u8 *pos; local
198 const u8 *pos, *password; local
    [all...]
  /external/chromium/base/i18n/
break_iterator.cc 57 int32_t pos; local
63 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
64 if (pos == UBRK_DONE) {
68 pos_ = static_cast<size_t>(pos);
72 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
73 if (pos == UBRK_DONE) {
76 pos_ = static_cast<size_t>(pos);
79 if (pos == UBRK_DONE && prev_ == pos_) {
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 92 * @param pos parameter index, 1-based
96 public native void bind(int pos, int value) throws SQLite.Exception;
100 * @param pos parameter index, 1-based
104 public native void bind(int pos, long value) throws SQLite.Exception;
108 * @param pos parameter index, 1-based
112 public native void bind(int pos, double value) throws SQLite.Exception;
116 * @param pos parameter index, 1-based
120 public native void bind(int pos, byte[] value) throws SQLite.Exception;
124 * @param pos parameter index, 1-based
128 public native void bind(int pos, String value) throws SQLite.Exception
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
EOF.java 15 public EOF(int line, int pos)
19 setPos(pos);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/beos/
SDL_syscdrom.cc 53 #define POS_TRACK(pos) pos.position[6]
54 #define POS_ABS_M(pos) pos.position[9]
55 #define POS_ABS_S(pos) pos.position[10]
56 #define POS_ABS_F(pos) pos.position[11]
57 #define POS_REL_M(pos) pos.position[13
322 scsi_position pos; local
355 scsi_play_position pos; local
    [all...]
  /external/qemu/hw/
isa.h 15 int DMA_read_memory (int nchan, void *buf, int pos, int size);
16 int DMA_write_memory (int nchan, void *buf, int pos, int size);
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_cli.c 521 char cmd[256], *pos, *end; local
531 pos = cmd;
532 ret = os_snprintf(pos, end - pos, WPA_CTRL_RSP "IDENTITY-%s:%s",
534 if (ret < 0 || ret >= end - pos) {
538 pos += ret;
540 ret = os_snprintf(pos, end - pos, " %s", argv[i]);
541 if (ret < 0 || ret >= end - pos) {
545 pos += ret
554 char cmd[256], *pos, *end; local
588 char cmd[256], *pos, *end; local
621 char cmd[256], *pos, *end; local
653 char cmd[256], *pos, *end; local
687 char cmd[256], *pos, *end; local
720 char cmd[256], *pos, *end; local
773 char cmd[256], *pos, *end; local
799 char cmd[256], *pos, *end; local
1523 const char *pos; local
1681 char cmdbuf[256], *cmd, *argv[max_args], *pos; local
1914 char buf[4096], *pos; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
MockParserStream.java 32 int pos = 0; field in class:MockParserStream
42 return array[pos++];
  /external/dbus/dbus/
dbus-marshal-basic.c 260 * @param pos the byte offset where int should be written
267 int pos,
271 set_4_octets (str, pos, value, byte_order);
285 * @param pos the position of the marshaled string length
295 int pos,
306 _dbus_assert (_DBUS_ALIGN_VALUE (pos, 4) == (unsigned) pos);
308 _dbus_string_get_const_data_len (str, pos, 4));
313 str, pos + 4, old_len))
316 _dbus_marshal_set_uint32 (str, pos, new_len, byte_order)
709 int pos; local
879 int pos; local
1670 int pos, dump_pos; local
    [all...]
  /external/bluetooth/bluez/test/
test-health-sink 36 pos = int(sys.stdin.readline()) - 1 variable
37 if pos < 0:
39 select = adapters[pos]
63 pos = int(sys.stdin.readline()) - 1 variable
64 if pos < 0:
66 select = devices[pos]
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 60 final int pos = m_pos; local
63 if (pos >= max) return -1;
64 if (pos + length > max) length = max - pos;
70 for (int i = 0; i < length; ++ i) buf [offset + i] = mbuf [pos + i];
72 System.arraycopy (mbuf, pos, buf, offset, length);
  /external/icu4c/i18n/
nfsubs.h 33 int32_t pos; member in class:NFSubstitution
38 NFSubstitution(int32_t pos,
57 static NFSubstitution* makeSubstitution(int32_t pos,
111 * @param pos The position in toInsertInto where the owning rule's
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
123 * @param pos The position in toInsertInto where the owning rule's
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
226 int32_t getPos() const { return pos; }
  /hardware/qcom/media/mm-video/vidc/vdec/src/
h264_utils.cpp 71 : begin (_begin), end(_end), pos (- 1), bit (0),
86 //return static_cast<uint32> (*pos);
87 return static_cast<uint32> (begin[pos]);
93 ++pos;
94 //if (pos >= stop)
95 if (begin + pos == end)
104 //cursor |= static_cast<uint32> (*pos);
105 cursor |= static_cast<uint32> (begin[pos]);
249 uint32 pos = 0; local
260 coef2 = buffer[pos++]
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapMemoryLiteral.java 39 int pos = 0; local
40 while (pos < mData.length) {
41 int read = in.read(mData, pos, mData.length - pos);
45 pos += read;
47 if (pos != mData.length) {
  /packages/apps/Mms/src/com/android/mms/transaction/
ProgressCallbackEntity.java 58 int pos = 0, totalLen = mContent.length; local
59 while (pos < totalLen) {
60 int len = totalLen - pos;
64 outstream.write(mContent, pos, len);
67 pos += len;
69 broadcastProgressIfNeeded(100 * pos / totalLen);

Completed in 1870 milliseconds

<<11121314151617181920>>