/vbox/src/VBox/GuestHost/OpenGL/include/ |
H A D | cr_list.h | 21 DECLEXPORT(void) crListInsert( CRList *l, CRListIterator *iter, void *elem ); 22 DECLEXPORT(void) crListErase( CRList *l, CRListIterator *iter ); 37 DECLEXPORT(CRListIterator *) crListNext( CRListIterator *iter ); variable 38 DECLEXPORT(CRListIterator *) crListPrev( CRListIterator *iter ); variable 39 DECLEXPORT(void *) crListElement( CRListIterator *iter ); variable
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | getai.c | 46 void *iter; local 56 iter = NULL; 57 while ((iter = PR_EnumerateAddrInfo(iter, ai, 0, &addr)) != NULL) {
|
/vbox/src/VBox/Devices/PC/BIOS/ |
H A D | timepci.c | 84 uint16_t iter; local 86 iter = 25000; 87 while (--iter != 0) {
|
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/ |
H A D | xpidl_doc.c | 74 IDL_tree iter; local 75 for (iter = state->tree; iter; iter = IDL_LIST(iter).next) { 76 state->tree = IDL_LIST(iter).data; 103 IDL_tree iter; local 130 if ((iter = IDL_INTERFACE(iface).inheritance_spec)) { 132 print_list(state->file, iter);
|
H A D | xpidl_header.c | 143 IDL_tree iface = state->tree, iter, orig; local 228 for (iter = IDL_INTERFACE(state->tree).body; 229 iter != NULL; 230 iter = IDL_LIST(iter).next) 232 IDL_tree data = IDL_LIST(iter).data; 242 if ((iter = IDL_INTERFACE(iface).inheritance_spec)) { 244 if (IDL_LIST(iter).next != NULL) { 245 IDL_tree_error(iter, 249 fprintf(state->file, "public %s", IDL_IDENT(IDL_LIST(iter) 616 IDL_tree iter; local 1005 IDL_tree iter; local [all...] |
H A D | xpidl_java.c | 272 IDL_tree iter; local 273 for (iter = list; iter; iter = IDL_LIST(iter).next) { 274 if (IDL_NODE_TYPE(IDL_LIST(iter).data) == IDLN_CONST_DCL) { 275 state->tree = IDL_LIST(iter).data; 280 for (iter = list; iter; iter 836 IDL_tree iter = method->raises_expr; local [all...] |
H A D | xpidl_util.c | 383 IDL_tree iter; local 384 for (iter = IDL_OP_DCL(method_tree).parameter_dcls; iter; 385 iter = IDL_LIST(iter).next) 387 IDL_tree param = IDL_LIST(iter).data; 497 IDL_tree iter; local 553 for (iter = op->parameter_dcls; iter; iter 810 IDL_tree iter; local [all...] |
/vbox/src/VBox/Additions/x11/VBoxClient/ |
H A D | hostversion.cpp | 75 DBusMessageIter iter; local 86 dbus_message_iter_init_append(msg,&iter); 87 dbus_message_iter_append_basic(&iter,DBUS_TYPE_STRING,&msg_app); 88 dbus_message_iter_append_basic(&iter,DBUS_TYPE_UINT32,&msg_replace_id); 89 dbus_message_iter_append_basic(&iter,DBUS_TYPE_STRING,&msg_icon); 90 dbus_message_iter_append_basic(&iter,DBUS_TYPE_STRING,&msg_summary); 91 dbus_message_iter_append_basic(&iter,DBUS_TYPE_STRING,&msg_body); 92 dbus_message_iter_open_container(&iter,DBUS_TYPE_ARRAY,DBUS_TYPE_STRING_AS_STRING,&array); 93 dbus_message_iter_close_container(&iter,&array); 94 dbus_message_iter_open_container(&iter,DBUS_TYPE_ARRA [all...] |
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | list.c | 75 void crListInsert( CRList *l, CRListIterator *iter, void *elem ) argument 80 CRASSERT( iter != NULL ); 81 CRASSERT( iter != l->head ); 85 p->prev = iter->prev; 86 p->next = iter; 88 iter->prev = p; 94 void crListErase( CRList *l, CRListIterator *iter ) 97 CRASSERT( iter != NULL ); 98 CRASSERT( iter != l->head ); 99 CRASSERT( iter ! 203 CRListIterator *iter; local 220 CRListIterator *iter; local 257 CRListIterator *iter; local [all...] |
/vbox/src/VBox/HostServices/auth/pam/ |
H A D | VBoxAuthPAM.c | 166 SymMap *iter; local 176 iter = &symmap[0]; 178 while (iter->pszName != NULL) 180 void *pv = dlsym (gpvLibPam, iter->pszName); 184 debug_printf("auth_pam_init: dlsym %s failed\n", iter->pszName); 192 *iter->ppfn = pv; 194 iter++;
|
/vbox/src/libs/xpcom18a4/xpcom/string/public/ |
H A D | nsCharTraits.h | 602 read( const InputIterator& iter ) 604 return iter.get(); 733 write( OutputIterator& iter, const typename OutputIterator::value_type* s, PRUint32 n ) argument 735 return iter.write(s, n); 746 write( CharT*& iter, const CharT* s, PRUint32 n ) argument 748 nsCharTraits<CharT>::move(iter, s, n); 749 iter += n; 761 write( char*& iter, const char* s, PRUint32 n ) argument 763 nsCharTraits<char>::move(iter, s, n); 764 iter 774 write( PRUnichar*& iter, const PRUnichar* s, PRUint32 n ) argument [all...] |
/vbox/src/libs/xpcom18a4/xpcom/tests/StringFactoringTests/ |
H A D | test_main.cpp | 158 basic_nsAString<CharT>::const_iterator iter = aReadable.BeginReading(); local 159 if ( *iter != CharT('H') ) 161 cout << "FAILED |test_readable_hello|: didn't start out pointing to the right thing, or else couldn't be dereferenced. --> '" << *iter << "'" << endl; 165 ++iter; 167 if ( *iter != CharT('e') ) 169 cout << "FAILED |test_readable_hello|: iterator couldn't be incremented, or else couldn't be dereferenced. --> '" << *iter << "'" << endl; 173 iter = aReadable.EndReading(); 174 --iter; 175 if ( *iter != CharT('o') ) 177 cout << "FAILED |test_readable_hello|: iterator couldn't be set to |EndReading()|, or else couldn't be decremented, or else couldn't be dereferenced. --> '" << *iter << "'" << end [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | string.c | 364 const WCHAR *iter = format; local 367 while (*iter) 369 while (*iter && *iter != '%') 373 *str++ = *iter++; 375 if (*iter == '%') 377 if (iter[1] == '%') 382 iter += 2; 387 *fmta++ = *iter++; 388 while (*iter [all...] |
/vbox/src/VBox/Additions/WINNT/VBoxTray/ |
H A D | VBoxDisplay.cpp | 233 DWORD iter ; local 238 for (iter = 0; iter < totalDispNum; iter++) 240 if (iter != 0 && iter != Id && !(paDisplayDevices[iter].StateFlags & DISPLAY_DEVICE_ACTIVE)) 242 LogRel(("VBoxTray:Initially disabling the monitor with id = %d . Total Monitor=%d\n", iter, totalDispNum)); 248 displayDeviceTmp = paDisplayDevices[iter];
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | dict.c | 407 xmlDictEntryPtr iter, next; local 451 iter = olddict[i].next; 452 while (iter) { 453 next = iter->next; 459 key = xmlDictComputeKey(iter->name, iter->len) % dict->size; 461 memcpy(&(dict->dict[key]), iter, sizeof(xmlDictEntry)); 464 xmlFree(iter); 466 iter->next = dict->dict[key].next; 467 dict->dict[key].next = iter; 498 xmlDictEntryPtr iter; local [all...] |
H A D | hash.c | 200 xmlHashEntryPtr iter, next; local 242 iter = oldtable[i].next; 243 while (iter) { 244 next = iter->next; 250 key = xmlHashComputeKey(table, iter->name, iter->name2, 251 iter->name3); 253 memcpy(&(table->table[key]), iter, sizeof(xmlHashEntry)); 255 xmlFree(iter); 257 iter 290 xmlHashEntryPtr iter; local 832 xmlHashEntryPtr iter; local 906 xmlHashEntryPtr iter; local 946 xmlHashEntryPtr iter; local [all...] |
/vbox/src/VBox/Main/src-all/ |
H A D | QMTranslatorImpl.cpp | 188 QMHashSetConstIter iter; local 196 for (iter = lowerIter; iter != upperIter; ++iter) 198 const QMMessage &message = m_messageArray[iter->offset]; 212 } while (iter == upperIter && pszDisamb); 214 return (iter != upperIter ? m_messageArray[iter->offset].strTranslation.c_str() : "");
|
/vbox/src/libs/xpcom18a4/java/src/ |
H A D | nsJavaXPTCStub.cpp | 359 nsCOMPtr<nsIInterfaceInfo> iter = mIInfo; local 362 if (NS_SUCCEEDED(iter->IsIID(&iid, &match)) && match) 366 iter->GetParent(getter_AddRefs(parent)); 367 iter = parent; 369 while (iter != nsnull);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsNativeCharsetUtils.cpp | 747 nsACString::const_iterator iter; local 748 input.BeginReading(iter); 764 const char *buf = iter.get(); 781 nsAString::const_iterator iter, end; local 782 input.BeginReading(iter); 790 const PRUnichar *buf = iter.get(); 791 PRUint32 bufLeft = Distance(iter, end); 873 nsACString::const_iterator iter; local 874 input.BeginReading(iter); 876 const char *buf = iter 902 nsAString::const_iterator iter; local 961 nsACString::const_iterator iter; local 1000 nsAString::const_iterator iter; local 1105 nsReadingIterator<PRUnichar> iter; local 1146 nsReadingIterator<char> iter; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/string/src/ |
H A D | nsReadableUtils.cpp | 465 nsAString::const_iterator iter; local 466 for ( aString.BeginReading(iter); iter != done_reading; iter.advance( PRInt32(fragmentLength) ) ) 468 fragmentLength = PRUint32(iter.size_forward()); 469 const PRUnichar* c = iter.get(); 495 nsACString::const_iterator iter; local 496 for ( aString.BeginReading(iter); iter != done_reading; iter 527 nsReadingIterator<char> iter; local [all...] |
H A D | nsStringObsolete.cpp | 737 const L* iter = big + max; local 738 for (i=max; iter >= big; --i, --iter) 740 if (nsBufferRoutines<L>::compare(iter, little, littleLen, ignoreCase) == 0) 757 for (const CharT* iter = data; iter < end; ++iter) 759 CharT currentChar = *iter; 769 return iter - data; // found it! return index of the found char. 786 for (const CharT* iter [all...] |
/vbox/src/VBox/Main/src-client/ |
H A D | VideoRec.cpp | 371 T iter(aWidth, aHeight, aSrcBuf); 376 rc = iter.getRGB(&red, &green, &blue); 734 vpx_codec_iter_t iter = NULL; local 738 const vpx_codec_cx_pkt_t *pkt = vpx_codec_get_cx_data(&pStrm->VpxCodec, &iter);
|
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/ |
H A D | greeter.c | 940 GList *iter; local 945 for (iter = priv->responses_received; iter; iter = iter->next) 947 msg_length += string_length ((gchar *)iter->data); 952 for (iter = priv->responses_received; iter; iter = iter [all...] |
H A D | user.c | 386 GVariantIter *iter; local 407 g_variant_get (result, "(a{sv})", &iter); 408 while (g_variant_iter_loop (iter, "{&sv}", &name, &value)) 452 g_variant_iter_free (iter); 744 GVariantIter *iter; local 748 g_variant_get (result, "(ao)", &iter); 749 while (g_variant_iter_loop (iter, "&o", &path)) 765 g_variant_iter_free (iter); 828 GVariantIter *iter; local 834 g_variant_get (value, "ao", &iter); 1266 GList *iter; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prnetdb.c | 2138 PRIntn iter = (PRIntn)(uintptr_t)iterPtr; local 2139 iter = PR_EnumerateHostEnt(iter, &((PRAddrInfoFB *) base)->hostent, port, result); 2140 if (iter < 0) 2141 iter = 0; 2142 return (void *)(uintptr_t)iter; 2167 PRIntn iter = (PRIntn) iterPtr; 2168 iter = PR_EnumerateHostEnt(iter, &((PRAddrInfoFB *) base)->hostent, port, result); 2169 if (iter < [all...] |