/external/guava/guava/src/com/google/common/collect/ |
D | Queues.java | 212 int added = 0; in drain() local 213 while (added < numElements) { in drain() 216 added += q.drainTo(buffer, numElements - added); in drain() 217 if (added < numElements) { // not enough elements immediately available; will have to poll in drain() 223 added++; in drain() 226 return added; in drain() 246 int added = 0; in drainUninterruptibly() local 249 while (added < numElements) { in drainUninterruptibly() 252 added += q.drainTo(buffer, numElements - added); in drainUninterruptibly() 253 if (added < numElements) { // not enough elements immediately available; will have to poll in drainUninterruptibly() [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | ChangeLog | 6 * bsd: Cleaned up driver wrapper and added various low-level 41 * added internal debugging mechanism with backtrace support and memory 46 * added support for WDS (4-address frame) mode with per-station virtual 61 * added support for external Registrars with WPS (UPnP transport) 65 * added support for WPS USBA out-of-band mechanism with USB Flash 75 * added number of code size optimizations to remove unnecessary 83 * fixed number of small WPS issues and added workarounds to 85 * added some IEEE 802.11n co-existence rules to disable 40 MHz channels 88 * added support for NFC out-of-band mechanism with WPS 89 * added preliminary support for IEEE 802.11r RIC processing [all …]
|
/external/grub/ |
D | AUTHORS | 11 bugs, added symbolic link support to shared_src/fsys_ext2fs.c, and 24 Peter Astrand added support for a color menu. 31 Per Lundberg added graphics support to the Multiboot Specification. 36 Christoph Plattner added support for Net Boot Image Proposal. 38 Frank Mehnert added support for hercules console. 40 Kristoffer Branemyr added VSTa filesystem support. 42 Serguei Tzukanov added JFS and XFS support. 44 Jason Thomas added Linux DAC960 support and support for hiding/unhiding 47 Tilmann Bubeck added support for vt100-incompatible terminals. 49 KB Sriram added a better detection of FAT filesystem and fixed a [all …]
|
/external/wpa_supplicant_6/wpa_supplicant/ |
D | ChangeLog | 8 * added explicit disconnect on 4-way handshake failures 9 * added WPS workarounds for known interoperability issues with broken, 15 * added a workaround for race condition between receive EAPOL frames 33 * added support for Wi-Fi Protected Setup (WPS) 42 * added support for EAP-AKA' (draft-arkko-eap-aka-kdf) 43 * added support for using driver_test over UDP socket 48 * added a Windows installer that includes WinPcap and all the needed 55 * added Milenage SIM/USIM emulator for EAP-SIM/EAP-AKA 59 * added a new network configuration option, wpa_ptk_rekey, that can be 62 * added an optional mitigation mechanism for certain attacks against [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ChangeLog | 11 * bsd: Cleaned up driver wrapper and added various low-level 19 * wpa_cli: added option for using a separate process to receive event 57 * nl80211: added support for IBSS networks 58 * added internal debugging mechanism with backtrace support and memory 60 * added WPS ER unsubscription command to more cleanly unregister from 64 * added BSS table to maintain more complete scan result information 80 * added support for multiple SSIDs per scan request to optimize 84 * added support for WPS USBA out-of-band mechanism with USB Flash 90 * added better support for drivers that allow separate authentication 98 * added AP mode functionality (CONFIG_AP=y) with mode=2 in the network [all …]
|
/external/openssl/crypto/objects/ |
D | obj_dat.c | 101 static LHASH_OF(ADDED_OBJ) *added=NULL; 182 if (added != NULL) return(1); in IMPLEMENT_LHASH_COMP_FN() 183 added=lh_ADDED_OBJ_new(); in IMPLEMENT_LHASH_COMP_FN() 184 return(added != NULL); in IMPLEMENT_LHASH_COMP_FN() 229 if (added == NULL) return; in OBJ_cleanup() 230 lh_ADDED_OBJ_down_load(added) = 0; in OBJ_cleanup() 231 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */ in OBJ_cleanup() 232 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */ in OBJ_cleanup() 233 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */ in OBJ_cleanup() 234 lh_ADDED_OBJ_free(added); in OBJ_cleanup() [all …]
|
/external/bzip2/ |
D | README.android | 5 * added README.android (this file) 6 * added Android.mk 7 * added CleanSpec.mk 8 * added ThirdPartyProject.prop 10 * added empty MODULE_LICENSE_BSD_LIKE
|
/external/e2fsprogs/intl/ |
D | localealias.c | 156 size_t added; in _nl_expand_alias() local 188 added = 0; in _nl_expand_alias() 189 while (added == 0 && locale_alias_path[0] != '\0') in _nl_expand_alias() 202 added = read_alias_file (start, locale_alias_path - start); in _nl_expand_alias() 205 while (added != 0); in _nl_expand_alias() 221 size_t added; in read_alias_file() local 243 added = 0; in read_alias_file() 303 return added; in read_alias_file() 316 return added; in read_alias_file() 342 ++added; in read_alias_file() [all …]
|
/external/bluetooth/glib/gio/ |
D | gunixvolumemonitor.c | 261 GList **added, in diff_sorted_lists() argument 266 *added = *removed = NULL; in diff_sorted_lists() 279 *added = g_list_prepend (*added, list2->data); in diff_sorted_lists() 296 *added = g_list_prepend (*added, list2->data); in diff_sorted_lists() 346 GList *removed, *added; in update_volumes() local 356 &added, &removed); in update_volumes() 374 for (l = added; l != NULL; l = l->next) in update_volumes() 386 g_list_free (added); in update_volumes() 398 GList *removed, *added; in update_mounts() local 410 &added, &removed); in update_mounts() [all …]
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
D | GhostControl.java | 31 protected boolean added = false; field in GhostControl 101 if (enabled && !added) { in setEnabled() 107 added = true; in setEnabled() 108 } else if (!enabled && added) { in setEnabled() 110 added = false; in setEnabled() 144 added = false; in setPhysicsSpace() 151 added = true; in setPhysicsSpace()
|
D | CharacterControl.java | 30 protected boolean added = false; field in CharacterControl 98 if (enabled && !added) { in setEnabled() 103 added = true; in setEnabled() 104 } else if (!enabled && added) { in setEnabled() 106 added = false; in setEnabled() 170 added = false; in setPhysicsSpace() 177 added = true; in setPhysicsSpace()
|
D | RigidBodyControl.java | 37 protected boolean added = false; field in RigidBodyControl 139 if (enabled && !added) { in setEnabled() 145 added = true; in setEnabled() 146 } else if (!enabled && added) { in setEnabled() 148 added = false; in setEnabled() 230 added = false; in setPhysicsSpace() 235 added = true; in setPhysicsSpace()
|
D | VehicleControl.java | 36 protected boolean added = false; field in VehicleControl 155 if (enabled && !added) { in setEnabled() 161 added = true; in setEnabled() 162 } else if (!enabled && added) { in setEnabled() 164 added = false; in setEnabled() 236 added = false; in setPhysicsSpace() 241 added = true; in setPhysicsSpace()
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
D | SDL_getenv.c | 96 int added; in SDL_putenv() local 122 added = 0; in SDL_putenv() 136 added = 1; in SDL_putenv() 141 if ( ! added ) { in SDL_putenv() 147 added = 1; in SDL_putenv() 152 return (added ? 0 : -1); in SDL_putenv()
|
/external/expat/lib/ |
D | libexpatw.def | 59 ; added with version 1.95.3 62 ; added with version 1.95.5 65 ; added with version 1.95.6 70 ; added with version 1.95.8
|
D | libexpat.def | 59 ; added with version 1.95.3 62 ; added with version 1.95.5 65 ; added with version 1.95.6 70 ; added with version 1.95.8
|
/external/qemu-pc-bios/vgabios/ |
D | ChangeLog | 17 - added support for a lot more non-standard VBE modes (e.g. widescreen modes) 34 - added DPMS support to cirrus vgabios (patch from Gleb Natapov) 58 - added debug message for unsupported VBE modes 70 - added PCI data structure for the Cirrus VGABIOS images 71 - added support for the PCI data structure in biossums 112 GRDC shift register setting added) 132 - .cvsignore added for auto-generated file 176 - VBE set bank functions failure handling added 183 - added special case for the 4 bpp when setting VBE display start 209 * save/restore video state support for Bochs VBE and standard VGA added [all …]
|
D | README | 95 . added DPMS support to cirrus vgabios (patch from Gleb Natapov) 97 . added support for a lot more non-standard VBE modes (e.g. widescreen modes) 102 . added PCI data structure for the Cirrus VGABIOS images 107 . added minimal support for the video parameter table (VPT) 110 . save/restore video state support for Bochs VBE and standard VGA added 114 . VGA compatible setup for VBE modes added 118 . Bochs VBE protected mode interface added (based on a patch by malc@pulsesoft.com) 163 . support for 15bpp, 16bpp, 24bpp and 32bpp VBE modes added 164 . SVGA mode 0x6A added 169 . added lfb-mode numbers (patch from mathis) [all …]
|
/external/mesa3d/src/glsl/ |
D | glsl_symbol_table.cpp | 105 int added = _mesa_symbol_table_add_symbol(table, -1, v->name, entry); in add_variable() local 106 assert(added == 0); in add_variable() 107 (void)added; in add_variable() 141 int added = _mesa_symbol_table_add_global_symbol(table, -1, f->name, entry); in add_global_function() local 142 assert(added == 0); in add_global_function()
|
/external/stlport/etc/ |
D | ChangeLog-4.0 | 37 * cmath : added same workaround for SUN's math exception/std::exception name clash 40 …* _streambuf.c : added "typename" to out-of-line functions (thanks to Michael Tsirkin for the repo… 57 * _iterator_base.h : added iterator<output_iterator_tag, void,..> specialization; 61 * INSTALL : added some exaples and fixed typos (thanks to Beman Dawes for the report) 65 * _messages_facets.h : added DLL export decls (thanks to John Maddock for the report) 72 * using/fstream.h : added missing end-of-line (thanks to Jean-Francois Panisset for the report) 80 * _valarray.h : added assert to operator= 82 * config/vc_select_lib.h : added _AFXDLL recognition (thanks to Andrew Phipps for input) 84 * _rope.h : added default constructors to please gcc-2.7.2 97 * _debug.c/_debug.h - added extra zero-initialization for more robustness; [all …]
|
/external/chromium/base/ |
D | observer_list_unittest.cc | 67 : added(false), in AddInObserve() 72 if (!added) { in Observe() 73 added = true; in Observe() 78 bool added; member in __anona47d35e80111::AddInObserve 337 EXPECT_TRUE(b.added); in TEST() 358 bool added() const { return added_; } in added() function in __anona47d35e80111::AddInClearObserve 375 EXPECT_TRUE(a.added()); in TEST() 387 EXPECT_TRUE(a.added()); in TEST()
|
/external/mesa3d/docs/ |
D | README.DJ | 209 + added 3dfx Glide3 support 210 + added refresh rate control 211 + added fonts in GLUT 220 + added MMX clear/blit routines 222 + added samples makefile 223 + added new GLUT functions 224 + added color-index modes 225 + added Matrox Millennium MGA2064W driver 226 + added 8bit FakeColor (thanks to Neil Funk) 227 + added VGA support (to keep Ben Decker happy) [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/ |
D | History.txt | 17 - added work-around code to handle the lack of support for StopIteration in Rubinius 26 - added a newly developed `samples/JavaScript.g' file for parsing JavaScript. 47 - added #compile! and #clobber! methods to directly invoke the 'compile' 57 - added new #hold convenience method to ANTLR3::CommonTokenStream 65 - added more content to the ruby antlr3 guide 72 - added new #each_on_channel and #walk convenience methods to ANTLR3::CommonTokenStream 86 - added --help and --version options to antlr4ruby 87 - documented the antlr4ruby source and added license information 89 - added a hoe-based rakefile with the gem distribution of the source code 147 - added template unit tests at test/unit/test-template.rb
|
/external/expat/bcb5/ |
D | libexpat_mtd.def | 59 ; added with version 1.95.3 62 ; added with version 1.95.5 65 ; added with version 1.95.6 70 ; added with version 1.95.8
|
D | libexpatw_mtd.def | 59 ; added with version 1.95.3 62 ; added with version 1.95.5 65 ; added with version 1.95.6 70 ; added with version 1.95.8
|