Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1 | Copyright (c) 2014, Linaro Limited |
| 2 | All rights reserved. |
| 3 | |
| 4 | Redistribution and use in source and binary forms, with or without |
| 5 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 6 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 7 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 8 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 11 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 12 | names of its contributors may be used to endorse or promote products |
| 13 | derived from this software without specific prior written permission. |
| 14 | |
| 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 19 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | |
| 27 | ------------------------------------------------------------------- |
| 28 | |
| 29 | strchr - find a character in a string |
| 30 | |
| 31 | Copyright (c) 2014, ARM Limited |
| 32 | All rights Reserved. |
| 33 | Copyright (c) 2014, Linaro Ltd. |
| 34 | |
| 35 | Redistribution and use in source and binary forms, with or without |
| 36 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 37 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 38 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 39 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 40 | notice, this list of conditions and the following disclaimer in the |
| 41 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 42 | * Neither the name of the company nor the names of its contributors |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 43 | may be used to endorse or promote products derived from this |
| 44 | software without specific prior written permission. |
| 45 | |
| 46 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 47 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 48 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 49 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 50 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 51 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 52 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 53 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 54 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 55 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 56 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 57 | |
| 58 | ------------------------------------------------------------------- |
| 59 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 60 | ==================================================== |
| 61 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 62 | |
| 63 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 64 | Permission to use, copy, modify, and distribute this |
| 65 | software is freely granted, provided that this notice |
| 66 | is preserved. |
| 67 | |
| 68 | ------------------------------------------------------------------- |
| 69 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 70 | Based on the UCB version with the ID appearing below. |
| 71 | This is ANSIish only when "multibyte character == plain character". |
| 72 | |
| 73 | Copyright (c) 1989, 1993 |
| 74 | The Regents of the University of California. All rights reserved. |
| 75 | |
| 76 | Redistribution and use in source and binary forms, with or without |
| 77 | modification, are permitted provided that the following conditions |
| 78 | are met: |
| 79 | 1. Redistributions of source code must retain the above copyright |
| 80 | notice, this list of conditions and the following disclaimer. |
| 81 | 2. Redistributions in binary form must reproduce the above copyright |
| 82 | notice, this list of conditions and the following disclaimer in the |
| 83 | documentation and/or other materials provided with the distribution. |
| 84 | 3. Neither the name of the University nor the names of its contributors |
| 85 | may be used to endorse or promote products derived from this software |
| 86 | without specific prior written permission. |
| 87 | |
| 88 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 89 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 90 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 91 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 92 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 93 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 94 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 95 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 96 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 97 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 98 | SUCH DAMAGE. |
| 99 | |
| 100 | ------------------------------------------------------------------- |
| 101 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 102 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 103 | All rights reserved. |
| 104 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 105 | Redistribution and use in source and binary forms, with or without |
| 106 | modification, are permitted provided that the following conditions |
| 107 | are met: |
| 108 | 1. Redistributions of source code must retain the above copyright |
| 109 | notice, this list of conditions and the following disclaimer. |
| 110 | 2. Redistributions in binary form must reproduce the above copyright |
| 111 | notice, this list of conditions and the following disclaimer in the |
| 112 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 113 | 3. Neither the name of the project nor the names of its contributors |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 114 | may be used to endorse or promote products derived from this software |
| 115 | without specific prior written permission. |
| 116 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 117 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 118 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 119 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 120 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 121 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 122 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 123 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 124 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 125 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 126 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 127 | SUCH DAMAGE. |
| 128 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 129 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 130 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 131 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 132 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 133 | |
| 134 | Permission to use, copy, modify, and/or distribute this software for any |
| 135 | purpose with or without fee is hereby granted, provided that the above |
| 136 | copyright notice and this permission notice appear in all copies. |
| 137 | |
| 138 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 139 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 140 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 141 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 142 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 143 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 144 | PERFORMANCE OF THIS SOFTWARE. |
| 145 | |
| 146 | ------------------------------------------------------------------- |
| 147 | |
| 148 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 149 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 150 | |
| 151 | Permission to use, copy, modify, and/or distribute this software for any |
| 152 | purpose with or without fee is hereby granted, provided that the above |
| 153 | copyright notice and this permission notice appear in all copies. |
| 154 | |
| 155 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 156 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 157 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 158 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 159 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 160 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 161 | PERFORMANCE OF THIS SOFTWARE. |
| 162 | |
| 163 | ------------------------------------------------------------------- |
| 164 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 165 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 166 | |
| 167 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 168 | you may not use this file except in compliance with the License. |
| 169 | You may obtain a copy of the License at |
| 170 | |
| 171 | http://www.apache.org/licenses/LICENSE-2.0 |
| 172 | |
| 173 | Unless required by applicable law or agreed to in writing, software |
| 174 | distributed under the License is distributed on an "AS IS" BASIS, |
| 175 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 176 | See the License for the specific language governing permissions and |
| 177 | limitations under the License. |
| 178 | |
| 179 | ------------------------------------------------------------------- |
| 180 | |
| 181 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 182 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 183 | |
| 184 | Redistribution and use in source and binary forms, with or without |
| 185 | modification, are permitted provided that the following conditions |
| 186 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 187 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 188 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 189 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 190 | notice, this list of conditions and the following disclaimer in |
| 191 | the documentation and/or other materials provided with the |
| 192 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 193 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 194 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 195 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 196 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 197 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 198 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 199 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 200 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 201 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 202 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 203 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 204 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 205 | SUCH DAMAGE. |
| 206 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 207 | ------------------------------------------------------------------- |
| 208 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 209 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 210 | |
| 211 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 212 | you may not use this file except in compliance with the License. |
| 213 | You may obtain a copy of the License at |
| 214 | |
| 215 | http://www.apache.org/licenses/LICENSE-2.0 |
| 216 | |
| 217 | Unless required by applicable law or agreed to in writing, software |
| 218 | distributed under the License is distributed on an "AS IS" BASIS, |
| 219 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 220 | See the License for the specific language governing permissions and |
| 221 | limitations under the License. |
| 222 | |
| 223 | ------------------------------------------------------------------- |
| 224 | |
| 225 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 226 | All rights reserved. |
| 227 | |
| 228 | Redistribution and use in source and binary forms, with or without |
| 229 | modification, are permitted provided that the following conditions |
| 230 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 231 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 232 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 233 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 234 | notice, this list of conditions and the following disclaimer in |
| 235 | the documentation and/or other materials provided with the |
| 236 | distribution. |
| 237 | |
| 238 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 239 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 240 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 241 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 242 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 243 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 244 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 245 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 246 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 247 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 248 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 249 | SUCH DAMAGE. |
| 250 | |
| 251 | ------------------------------------------------------------------- |
| 252 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 253 | Copyright (C) 2008 The Android Open Source Project |
| 254 | All rights reserved. |
| 255 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 256 | |
| 257 | Redistribution and use in source and binary forms, with or without |
| 258 | modification, are permitted provided that the following conditions |
| 259 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 260 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 261 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 262 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 263 | notice, this list of conditions and the following disclaimer in |
| 264 | the documentation and/or other materials provided with the |
| 265 | distribution. |
| 266 | |
| 267 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 268 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 269 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 270 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 271 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 272 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 273 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 274 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 275 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 276 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 277 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 278 | SUCH DAMAGE. |
| 279 | |
| 280 | ------------------------------------------------------------------- |
| 281 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 282 | Copyright (C) 2008-2010 The Android Open Source Project |
| 283 | All rights reserved. |
| 284 | |
| 285 | Redistribution and use in source and binary forms, with or without |
| 286 | modification, are permitted provided that the following conditions |
| 287 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 288 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 289 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 290 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 291 | notice, this list of conditions and the following disclaimer in |
| 292 | the documentation and/or other materials provided with the |
| 293 | distribution. |
| 294 | |
| 295 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 296 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 297 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 298 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 299 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 300 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 301 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 302 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 303 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 304 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 305 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 306 | SUCH DAMAGE. |
| 307 | |
| 308 | ------------------------------------------------------------------- |
| 309 | |
| 310 | Copyright (C) 2009 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 311 | |
| 312 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 313 | you may not use this file except in compliance with the License. |
| 314 | You may obtain a copy of the License at |
| 315 | |
| 316 | http://www.apache.org/licenses/LICENSE-2.0 |
| 317 | |
| 318 | Unless required by applicable law or agreed to in writing, software |
| 319 | distributed under the License is distributed on an "AS IS" BASIS, |
| 320 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 321 | See the License for the specific language governing permissions and |
| 322 | limitations under the License. |
| 323 | |
| 324 | ------------------------------------------------------------------- |
| 325 | |
| 326 | Copyright (C) 2009 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 327 | All rights reserved. |
| 328 | |
| 329 | Redistribution and use in source and binary forms, with or without |
| 330 | modification, are permitted provided that the following conditions |
| 331 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 332 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 333 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 334 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 335 | notice, this list of conditions and the following disclaimer in |
| 336 | the documentation and/or other materials provided with the |
| 337 | distribution. |
| 338 | |
| 339 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 340 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 341 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 342 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 343 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 344 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 345 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 346 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 347 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 348 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 349 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 350 | SUCH DAMAGE. |
| 351 | |
| 352 | ------------------------------------------------------------------- |
| 353 | |
| 354 | Copyright (C) 2010 The Android Open Source Project |
| 355 | |
| 356 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 357 | you may not use this file except in compliance with the License. |
| 358 | You may obtain a copy of the License at |
| 359 | |
| 360 | http://www.apache.org/licenses/LICENSE-2.0 |
| 361 | |
| 362 | Unless required by applicable law or agreed to in writing, software |
| 363 | distributed under the License is distributed on an "AS IS" BASIS, |
| 364 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 365 | See the License for the specific language governing permissions and |
| 366 | limitations under the License. |
| 367 | |
| 368 | ------------------------------------------------------------------- |
| 369 | |
| 370 | Copyright (C) 2010 The Android Open Source Project |
| 371 | All rights reserved. |
| 372 | |
| 373 | Redistribution and use in source and binary forms, with or without |
| 374 | modification, are permitted provided that the following conditions |
| 375 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 376 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 377 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 378 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 379 | notice, this list of conditions and the following disclaimer in |
| 380 | the documentation and/or other materials provided with the |
| 381 | distribution. |
| 382 | |
| 383 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 384 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 385 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 386 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 387 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 388 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 389 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 390 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 391 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 392 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 393 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 394 | SUCH DAMAGE. |
| 395 | |
| 396 | ------------------------------------------------------------------- |
| 397 | |
| 398 | Copyright (C) 2010 The Android Open Source Project |
| 399 | Copyright (c) 2008 ARM Ltd |
| 400 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 401 | |
| 402 | Redistribution and use in source and binary forms, with or without |
| 403 | modification, are permitted provided that the following conditions |
| 404 | are met: |
| 405 | 1. Redistributions of source code must retain the above copyright |
| 406 | notice, this list of conditions and the following disclaimer. |
| 407 | 2. Redistributions in binary form must reproduce the above copyright |
| 408 | notice, this list of conditions and the following disclaimer in the |
| 409 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 410 | 3. The name of the company may not be used to endorse or promote |
| 411 | products derived from this software without specific prior written |
| 412 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 413 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 414 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 415 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 416 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 417 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 418 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 419 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 420 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 421 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 422 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 423 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 424 | |
| 425 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 426 | |
| 427 | ------------------------------------------------------------------- |
| 428 | |
| 429 | Copyright (C) 2011 The Android Open Source Project |
| 430 | |
| 431 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 432 | you may not use this file except in compliance with the License. |
| 433 | You may obtain a copy of the License at |
| 434 | |
| 435 | http://www.apache.org/licenses/LICENSE-2.0 |
| 436 | |
| 437 | Unless required by applicable law or agreed to in writing, software |
| 438 | distributed under the License is distributed on an "AS IS" BASIS, |
| 439 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 440 | See the License for the specific language governing permissions and |
| 441 | limitations under the License. |
| 442 | |
| 443 | ------------------------------------------------------------------- |
| 444 | |
| 445 | Copyright (C) 2011 The Android Open Source Project |
| 446 | All rights reserved. |
| 447 | |
| 448 | Redistribution and use in source and binary forms, with or without |
| 449 | modification, are permitted provided that the following conditions |
| 450 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 451 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 452 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 453 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 454 | notice, this list of conditions and the following disclaimer in |
| 455 | the documentation and/or other materials provided with the |
| 456 | distribution. |
| 457 | |
| 458 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 459 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 460 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 461 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 462 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 463 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 464 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 465 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 466 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 467 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 468 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 469 | SUCH DAMAGE. |
| 470 | |
| 471 | ------------------------------------------------------------------- |
| 472 | |
| 473 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 474 | |
| 475 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 476 | you may not use this file except in compliance with the License. |
| 477 | You may obtain a copy of the License at |
| 478 | |
| 479 | http://www.apache.org/licenses/LICENSE-2.0 |
| 480 | |
| 481 | Unless required by applicable law or agreed to in writing, software |
| 482 | distributed under the License is distributed on an "AS IS" BASIS, |
| 483 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 484 | See the License for the specific language governing permissions and |
| 485 | limitations under the License. |
| 486 | |
| 487 | ------------------------------------------------------------------- |
| 488 | |
| 489 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 490 | All rights reserved. |
| 491 | |
| 492 | Redistribution and use in source and binary forms, with or without |
| 493 | modification, are permitted provided that the following conditions |
| 494 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 495 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 496 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 497 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 498 | notice, this list of conditions and the following disclaimer in |
| 499 | the documentation and/or other materials provided with the |
| 500 | distribution. |
| 501 | |
| 502 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 503 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 504 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 505 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 506 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 507 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 508 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 509 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 510 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 511 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 512 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 513 | SUCH DAMAGE. |
| 514 | |
| 515 | ------------------------------------------------------------------- |
| 516 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 517 | Copyright (C) 2013 The Android Open Source Project |
| 518 | |
| 519 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 520 | you may not use this file except in compliance with the License. |
| 521 | You may obtain a copy of the License at |
| 522 | |
| 523 | http://www.apache.org/licenses/LICENSE-2.0 |
| 524 | |
| 525 | Unless required by applicable law or agreed to in writing, software |
| 526 | distributed under the License is distributed on an "AS IS" BASIS, |
| 527 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 528 | See the License for the specific language governing permissions and |
| 529 | limitations under the License. |
| 530 | |
| 531 | ------------------------------------------------------------------- |
| 532 | |
| 533 | Copyright (C) 2013 The Android Open Source Project |
| 534 | All rights reserved. |
| 535 | |
| 536 | Redistribution and use in source and binary forms, with or without |
| 537 | modification, are permitted provided that the following conditions |
| 538 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 539 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 540 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 541 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 542 | notice, this list of conditions and the following disclaimer in |
| 543 | the documentation and/or other materials provided with the |
| 544 | distribution. |
| 545 | |
| 546 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 547 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 548 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 549 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 550 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 551 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 552 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 553 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 554 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 555 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 556 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 557 | SUCH DAMAGE. |
| 558 | |
| 559 | ------------------------------------------------------------------- |
| 560 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 561 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 562 | All rights reserved. |
| 563 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 564 | |
| 565 | Redistribution and use in source and binary forms, with or without |
| 566 | modification, are permitted provided that the following conditions |
| 567 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 568 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 569 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 570 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 571 | notice, this list of conditions and the following disclaimer in |
| 572 | the documentation and/or other materials provided with the |
| 573 | distribution. |
| 574 | |
| 575 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 576 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 577 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 578 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 579 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 580 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 581 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 582 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 583 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 584 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 585 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 586 | SUCH DAMAGE. |
| 587 | |
| 588 | ------------------------------------------------------------------- |
| 589 | |
| 590 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 591 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 592 | All rights reserved. |
| 593 | |
| 594 | Redistribution and use in source and binary forms, with or without |
| 595 | modification, are permitted provided that the following conditions |
| 596 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 597 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 598 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 599 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 600 | notice, this list of conditions and the following disclaimer in |
| 601 | the documentation and/or other materials provided with the |
| 602 | distribution. |
| 603 | |
| 604 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 605 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 606 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 607 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 608 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 609 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 610 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 611 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 612 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 613 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 614 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 615 | SUCH DAMAGE. |
| 616 | |
| 617 | ------------------------------------------------------------------- |
| 618 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 619 | Copyright (C) 2014 The Android Open Source Project |
| 620 | |
| 621 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 622 | you may not use this file except in compliance with the License. |
| 623 | You may obtain a copy of the License at |
| 624 | |
| 625 | http://www.apache.org/licenses/LICENSE-2.0 |
| 626 | |
| 627 | Unless required by applicable law or agreed to in writing, software |
| 628 | distributed under the License is distributed on an "AS IS" BASIS, |
| 629 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 630 | See the License for the specific language governing permissions and |
| 631 | limitations under the License. |
| 632 | |
| 633 | ------------------------------------------------------------------- |
| 634 | |
| 635 | Copyright (C) 2014 The Android Open Source Project |
| 636 | All rights reserved. |
| 637 | |
| 638 | Redistribution and use in source and binary forms, with or without |
| 639 | modification, are permitted provided that the following conditions |
| 640 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 641 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 642 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 643 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 644 | notice, this list of conditions and the following disclaimer in |
| 645 | the documentation and/or other materials provided with the |
| 646 | distribution. |
| 647 | |
| 648 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 649 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 650 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 651 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 652 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 653 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 654 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 655 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 656 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 657 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 658 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 659 | SUCH DAMAGE. |
| 660 | |
| 661 | ------------------------------------------------------------------- |
| 662 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 663 | Copyright (c) 1980, 1983, 1988, 1993 |
| 664 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 665 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 666 | Redistribution and use in source and binary forms, with or without |
| 667 | modification, are permitted provided that the following conditions |
| 668 | are met: |
| 669 | 1. Redistributions of source code must retain the above copyright |
| 670 | notice, this list of conditions and the following disclaimer. |
| 671 | 2. Redistributions in binary form must reproduce the above copyright |
| 672 | notice, this list of conditions and the following disclaimer in the |
| 673 | documentation and/or other materials provided with the distribution. |
| 674 | 3. All advertising materials mentioning features or use of this software |
| 675 | must display the following acknowledgement: |
| 676 | This product includes software developed by the University of |
| 677 | California, Berkeley and its contributors. |
| 678 | 4. Neither the name of the University nor the names of its contributors |
| 679 | may be used to endorse or promote products derived from this software |
| 680 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 681 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 682 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 683 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 684 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 685 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 686 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 687 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 688 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 689 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 690 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 691 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 692 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 693 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 694 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 695 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 696 | |
| 697 | Permission to use, copy, modify, and distribute this software for any |
| 698 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 699 | copyright notice and this permission notice appear in all copies, and that |
| 700 | the name of Digital Equipment Corporation not be used in advertising or |
| 701 | publicity pertaining to distribution of the document or software without |
| 702 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 703 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 704 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 705 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 706 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 707 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 708 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 709 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 710 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 711 | SOFTWARE. |
| 712 | |
| 713 | ------------------------------------------------------------------- |
| 714 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 715 | Copyright (c) 1982, 1986, 1993 |
| 716 | The Regents of the University of California. All rights reserved. |
| 717 | |
| 718 | Redistribution and use in source and binary forms, with or without |
| 719 | modification, are permitted provided that the following conditions |
| 720 | are met: |
| 721 | 1. Redistributions of source code must retain the above copyright |
| 722 | notice, this list of conditions and the following disclaimer. |
| 723 | 2. Redistributions in binary form must reproduce the above copyright |
| 724 | notice, this list of conditions and the following disclaimer in the |
| 725 | documentation and/or other materials provided with the distribution. |
| 726 | 3. Neither the name of the University nor the names of its contributors |
| 727 | may be used to endorse or promote products derived from this software |
| 728 | without specific prior written permission. |
| 729 | |
| 730 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 731 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 732 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 733 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 734 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 735 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 736 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 737 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 738 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 739 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 740 | SUCH DAMAGE. |
| 741 | |
| 742 | ------------------------------------------------------------------- |
| 743 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 744 | Copyright (c) 1982, 1986, 1993 |
| 745 | The Regents of the University of California. All rights reserved. |
| 746 | (c) UNIX System Laboratories, Inc. |
| 747 | All or some portions of this file are derived from material licensed |
| 748 | to the University of California by American Telephone and Telegraph |
| 749 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 750 | the permission of UNIX System Laboratories, Inc. |
| 751 | |
| 752 | Redistribution and use in source and binary forms, with or without |
| 753 | modification, are permitted provided that the following conditions |
| 754 | are met: |
| 755 | 1. Redistributions of source code must retain the above copyright |
| 756 | notice, this list of conditions and the following disclaimer. |
| 757 | 2. Redistributions in binary form must reproduce the above copyright |
| 758 | notice, this list of conditions and the following disclaimer in the |
| 759 | documentation and/or other materials provided with the distribution. |
| 760 | 3. Neither the name of the University nor the names of its contributors |
| 761 | may be used to endorse or promote products derived from this software |
| 762 | without specific prior written permission. |
| 763 | |
| 764 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 765 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 766 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 767 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 768 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 769 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 770 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 771 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 772 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 773 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 774 | SUCH DAMAGE. |
| 775 | |
| 776 | ------------------------------------------------------------------- |
| 777 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 778 | Copyright (c) 1983, 1987, 1989 |
| 779 | The Regents of the University of California. All rights reserved. |
| 780 | |
| 781 | Redistribution and use in source and binary forms, with or without |
| 782 | modification, are permitted provided that the following conditions |
| 783 | are met: |
| 784 | 1. Redistributions of source code must retain the above copyright |
| 785 | notice, this list of conditions and the following disclaimer. |
| 786 | 2. Redistributions in binary form must reproduce the above copyright |
| 787 | notice, this list of conditions and the following disclaimer in the |
| 788 | documentation and/or other materials provided with the distribution. |
| 789 | 3. Neither the name of the University nor the names of its contributors |
| 790 | may be used to endorse or promote products derived from this software |
| 791 | without specific prior written permission. |
| 792 | |
| 793 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 794 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 795 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 796 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 797 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 798 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 799 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 800 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 801 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 802 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 803 | SUCH DAMAGE. |
| 804 | |
| 805 | ------------------------------------------------------------------- |
| 806 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 807 | Copyright (c) 1983, 1989 |
| 808 | The Regents of the University of California. All rights reserved. |
| 809 | |
| 810 | Redistribution and use in source and binary forms, with or without |
| 811 | modification, are permitted provided that the following conditions |
| 812 | are met: |
| 813 | 1. Redistributions of source code must retain the above copyright |
| 814 | notice, this list of conditions and the following disclaimer. |
| 815 | 2. Redistributions in binary form must reproduce the above copyright |
| 816 | notice, this list of conditions and the following disclaimer in the |
| 817 | documentation and/or other materials provided with the distribution. |
| 818 | 3. All advertising materials mentioning features or use of this software |
| 819 | must display the following acknowledgement: |
| 820 | This product includes software developed by the University of |
| 821 | California, Berkeley and its contributors. |
| 822 | 4. Neither the name of the University nor the names of its contributors |
| 823 | may be used to endorse or promote products derived from this software |
| 824 | without specific prior written permission. |
| 825 | |
| 826 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 827 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 828 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 829 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 830 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 831 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 832 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 833 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 834 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 835 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 836 | SUCH DAMAGE. |
| 837 | |
| 838 | ------------------------------------------------------------------- |
| 839 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 840 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 841 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 842 | |
| 843 | Redistribution and use in source and binary forms, with or without |
| 844 | modification, are permitted provided that the following conditions |
| 845 | are met: |
| 846 | 1. Redistributions of source code must retain the above copyright |
| 847 | notice, this list of conditions and the following disclaimer. |
| 848 | 2. Redistributions in binary form must reproduce the above copyright |
| 849 | notice, this list of conditions and the following disclaimer in the |
| 850 | documentation and/or other materials provided with the distribution. |
| 851 | 3. Neither the name of the University nor the names of its contributors |
| 852 | may be used to endorse or promote products derived from this software |
| 853 | without specific prior written permission. |
| 854 | |
| 855 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 856 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 857 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 858 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 859 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 860 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 861 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 862 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 863 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 864 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 865 | SUCH DAMAGE. |
| 866 | |
| 867 | ------------------------------------------------------------------- |
| 868 | |
| 869 | Copyright (c) 1983, 1990, 1993 |
| 870 | The Regents of the University of California. All rights reserved. |
| 871 | |
| 872 | Redistribution and use in source and binary forms, with or without |
| 873 | modification, are permitted provided that the following conditions |
| 874 | are met: |
| 875 | 1. Redistributions of source code must retain the above copyright |
| 876 | notice, this list of conditions and the following disclaimer. |
| 877 | 2. Redistributions in binary form must reproduce the above copyright |
| 878 | notice, this list of conditions and the following disclaimer in the |
| 879 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 880 | 3. Neither the name of the University nor the names of its contributors |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 881 | may be used to endorse or promote products derived from this software |
| 882 | without specific prior written permission. |
| 883 | |
| 884 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 885 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 886 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 887 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 888 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 889 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 890 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 891 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 892 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 893 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 894 | SUCH DAMAGE. |
| 895 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 896 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 897 | |
| 898 | Permission to use, copy, modify, and distribute this software for any |
| 899 | purpose with or without fee is hereby granted, provided that the above |
| 900 | copyright notice and this permission notice appear in all copies, and that |
| 901 | the name of Digital Equipment Corporation not be used in advertising or |
| 902 | publicity pertaining to distribution of the document or software without |
| 903 | specific, written prior permission. |
| 904 | |
| 905 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 906 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 907 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 908 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 909 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 910 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 911 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 912 | SOFTWARE. |
| 913 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 914 | ------------------------------------------------------------------- |
| 915 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 916 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 917 | The Regents of the University of California. All rights reserved. |
| 918 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 919 | Redistribution and use in source and binary forms, with or without |
| 920 | modification, are permitted provided that the following conditions |
| 921 | are met: |
| 922 | 1. Redistributions of source code must retain the above copyright |
| 923 | notice, this list of conditions and the following disclaimer. |
| 924 | 2. Redistributions in binary form must reproduce the above copyright |
| 925 | notice, this list of conditions and the following disclaimer in the |
| 926 | documentation and/or other materials provided with the distribution. |
| 927 | 3. Neither the name of the University nor the names of its contributors |
| 928 | may be used to endorse or promote products derived from this software |
| 929 | without specific prior written permission. |
| 930 | |
| 931 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 932 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 933 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 934 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 935 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 936 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 937 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 938 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 939 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 940 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 941 | SUCH DAMAGE. |
| 942 | |
| 943 | ------------------------------------------------------------------- |
| 944 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 945 | Copyright (c) 1983, 1993 |
| 946 | The Regents of the University of California. All rights reserved. |
| 947 | |
| 948 | Redistribution and use in source and binary forms, with or without |
| 949 | modification, are permitted provided that the following conditions |
| 950 | are met: |
| 951 | 1. Redistributions of source code must retain the above copyright |
| 952 | notice, this list of conditions and the following disclaimer. |
| 953 | 2. Redistributions in binary form must reproduce the above copyright |
| 954 | notice, this list of conditions and the following disclaimer in the |
| 955 | documentation and/or other materials provided with the distribution. |
| 956 | 4. Neither the name of the University nor the names of its contributors |
| 957 | may be used to endorse or promote products derived from this software |
| 958 | without specific prior written permission. |
| 959 | |
| 960 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 961 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 962 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 963 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 964 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 965 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 966 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 967 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 968 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 969 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 970 | SUCH DAMAGE. |
| 971 | |
| 972 | ------------------------------------------------------------------- |
| 973 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 974 | Copyright (c) 1985 |
| 975 | The Regents of the University of California. All rights reserved. |
| 976 | |
| 977 | Redistribution and use in source and binary forms, with or without |
| 978 | modification, are permitted provided that the following conditions |
| 979 | are met: |
| 980 | 1. Redistributions of source code must retain the above copyright |
| 981 | notice, this list of conditions and the following disclaimer. |
| 982 | 2. Redistributions in binary form must reproduce the above copyright |
| 983 | notice, this list of conditions and the following disclaimer in the |
| 984 | documentation and/or other materials provided with the distribution. |
| 985 | 3. All advertising materials mentioning features or use of this software |
| 986 | must display the following acknowledgement: |
| 987 | This product includes software developed by the University of |
| 988 | California, Berkeley and its contributors. |
| 989 | 4. Neither the name of the University nor the names of its contributors |
| 990 | may be used to endorse or promote products derived from this software |
| 991 | without specific prior written permission. |
| 992 | |
| 993 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 994 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 995 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 996 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 997 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 998 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 999 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1000 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1001 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1002 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1003 | SUCH DAMAGE. |
| 1004 | |
| 1005 | ------------------------------------------------------------------- |
| 1006 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1007 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1008 | All rights reserved. |
| 1009 | |
| 1010 | Redistribution and use in source and binary forms, with or without |
| 1011 | modification, are permitted provided that the following conditions |
| 1012 | are met: |
| 1013 | 1. Redistributions of source code must retain the above copyright |
| 1014 | notice, this list of conditions and the following disclaimer. |
| 1015 | 2. Redistributions in binary form must reproduce the above copyright |
| 1016 | notice, this list of conditions and the following disclaimer in the |
| 1017 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1018 | 3. Neither the name of the University nor the names of its contributors |
| 1019 | may be used to endorse or promote products derived from this software |
| 1020 | without specific prior written permission. |
| 1021 | |
| 1022 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1023 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1024 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1025 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1026 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1027 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1028 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1029 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1030 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1031 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1032 | SUCH DAMAGE. |
| 1033 | |
| 1034 | ------------------------------------------------------------------- |
| 1035 | |
| 1036 | Copyright (c) 1985, 1988, 1993 |
| 1037 | The Regents of the University of California. All rights reserved. |
| 1038 | |
| 1039 | Redistribution and use in source and binary forms, with or without |
| 1040 | modification, are permitted provided that the following conditions |
| 1041 | are met: |
| 1042 | 1. Redistributions of source code must retain the above copyright |
| 1043 | notice, this list of conditions and the following disclaimer. |
| 1044 | 2. Redistributions in binary form must reproduce the above copyright |
| 1045 | notice, this list of conditions and the following disclaimer in the |
| 1046 | documentation and/or other materials provided with the distribution. |
| 1047 | 3. Neither the name of the University nor the names of its contributors |
| 1048 | may be used to endorse or promote products derived from this software |
| 1049 | without specific prior written permission. |
| 1050 | |
| 1051 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1052 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1053 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1054 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1055 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1056 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1057 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1058 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1059 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1060 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1061 | SUCH DAMAGE. |
| 1062 | |
| 1063 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1064 | |
| 1065 | Permission to use, copy, modify, and distribute this software for any |
| 1066 | purpose with or without fee is hereby granted, provided that the above |
| 1067 | copyright notice and this permission notice appear in all copies, and that |
| 1068 | the name of Digital Equipment Corporation not be used in advertising or |
| 1069 | publicity pertaining to distribution of the document or software without |
| 1070 | specific, written prior permission. |
| 1071 | |
| 1072 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1073 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1074 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1075 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1076 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1077 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1078 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1079 | SOFTWARE. |
| 1080 | |
| 1081 | ------------------------------------------------------------------- |
| 1082 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1083 | Copyright (c) 1985, 1989, 1993 |
| 1084 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1085 | |
| 1086 | Redistribution and use in source and binary forms, with or without |
| 1087 | modification, are permitted provided that the following conditions |
| 1088 | are met: |
| 1089 | 1. Redistributions of source code must retain the above copyright |
| 1090 | notice, this list of conditions and the following disclaimer. |
| 1091 | 2. Redistributions in binary form must reproduce the above copyright |
| 1092 | notice, this list of conditions and the following disclaimer in the |
| 1093 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1094 | 3. All advertising materials mentioning features or use of this software |
| 1095 | must display the following acknowledgement: |
| 1096 | This product includes software developed by the University of |
| 1097 | California, Berkeley and its contributors. |
| 1098 | 4. Neither the name of the University nor the names of its contributors |
| 1099 | may be used to endorse or promote products derived from this software |
| 1100 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1101 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1102 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1103 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1104 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1105 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1106 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1107 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1108 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1109 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1110 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1111 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1112 | SUCH DAMAGE. |
| 1113 | |
| 1114 | ------------------------------------------------------------------- |
| 1115 | |
| 1116 | Copyright (c) 1985, 1993 |
| 1117 | The Regents of the University of California. All rights reserved. |
| 1118 | |
| 1119 | Redistribution and use in source and binary forms, with or without |
| 1120 | modification, are permitted provided that the following conditions |
| 1121 | are met: |
| 1122 | 1. Redistributions of source code must retain the above copyright |
| 1123 | notice, this list of conditions and the following disclaimer. |
| 1124 | 2. Redistributions in binary form must reproduce the above copyright |
| 1125 | notice, this list of conditions and the following disclaimer in the |
| 1126 | documentation and/or other materials provided with the distribution. |
| 1127 | 3. All advertising materials mentioning features or use of this software |
| 1128 | must display the following acknowledgement: |
| 1129 | This product includes software developed by the University of |
| 1130 | California, Berkeley and its contributors. |
| 1131 | 4. Neither the name of the University nor the names of its contributors |
| 1132 | may be used to endorse or promote products derived from this software |
| 1133 | without specific prior written permission. |
| 1134 | |
| 1135 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1136 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1137 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1138 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1139 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1140 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1141 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1142 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1143 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1144 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1145 | SUCH DAMAGE. |
| 1146 | |
| 1147 | ------------------------------------------------------------------- |
| 1148 | |
| 1149 | Copyright (c) 1985, 1993 |
| 1150 | The Regents of the University of California. All rights reserved. |
| 1151 | |
| 1152 | Redistribution and use in source and binary forms, with or without |
| 1153 | modification, are permitted provided that the following conditions |
| 1154 | are met: |
| 1155 | 1. Redistributions of source code must retain the above copyright |
| 1156 | notice, this list of conditions and the following disclaimer. |
| 1157 | 2. Redistributions in binary form must reproduce the above copyright |
| 1158 | notice, this list of conditions and the following disclaimer in the |
| 1159 | documentation and/or other materials provided with the distribution. |
| 1160 | 3. Neither the name of the University nor the names of its contributors |
| 1161 | may be used to endorse or promote products derived from this software |
| 1162 | without specific prior written permission. |
| 1163 | |
| 1164 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1165 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1166 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1167 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1168 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1169 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1170 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1171 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1172 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1173 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1174 | SUCH DAMAGE. |
| 1175 | |
| 1176 | ------------------------------------------------------------------- |
| 1177 | |
| 1178 | Copyright (c) 1987 Regents of the University of California. |
| 1179 | All rights reserved. |
| 1180 | |
| 1181 | Redistribution and use in source and binary forms, with or without |
| 1182 | modification, are permitted provided that the following conditions |
| 1183 | are met: |
| 1184 | 1. Redistributions of source code must retain the above copyright |
| 1185 | notice, this list of conditions and the following disclaimer. |
| 1186 | 2. Redistributions in binary form must reproduce the above copyright |
| 1187 | notice, this list of conditions and the following disclaimer in the |
| 1188 | documentation and/or other materials provided with the distribution. |
| 1189 | 3. Neither the name of the University nor the names of its contributors |
| 1190 | may be used to endorse or promote products derived from this software |
| 1191 | without specific prior written permission. |
| 1192 | |
| 1193 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1194 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1195 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1196 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1197 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1198 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1199 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1200 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1201 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1202 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1203 | SUCH DAMAGE. |
| 1204 | |
| 1205 | ------------------------------------------------------------------- |
| 1206 | |
| 1207 | Copyright (c) 1987, 1993 |
| 1208 | The Regents of the University of California. All rights reserved. |
| 1209 | |
| 1210 | Redistribution and use in source and binary forms, with or without |
| 1211 | modification, are permitted provided that the following conditions |
| 1212 | are met: |
| 1213 | 1. Redistributions of source code must retain the above copyright |
| 1214 | notice, this list of conditions and the following disclaimer. |
| 1215 | 2. Redistributions in binary form must reproduce the above copyright |
| 1216 | notice, this list of conditions and the following disclaimer in the |
| 1217 | documentation and/or other materials provided with the distribution. |
| 1218 | 3. All advertising materials mentioning features or use of this software |
| 1219 | must display the following acknowledgement: |
| 1220 | This product includes software developed by the University of |
| 1221 | California, Berkeley and its contributors. |
| 1222 | 4. Neither the name of the University nor the names of its contributors |
| 1223 | may be used to endorse or promote products derived from this software |
| 1224 | without specific prior written permission. |
| 1225 | |
| 1226 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1227 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1228 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1229 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1230 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1231 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1232 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1233 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1234 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1235 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1236 | SUCH DAMAGE. |
| 1237 | |
| 1238 | ------------------------------------------------------------------- |
| 1239 | |
| 1240 | Copyright (c) 1987, 1993 |
| 1241 | The Regents of the University of California. All rights reserved. |
| 1242 | |
| 1243 | Redistribution and use in source and binary forms, with or without |
| 1244 | modification, are permitted provided that the following conditions |
| 1245 | are met: |
| 1246 | 1. Redistributions of source code must retain the above copyright |
| 1247 | notice, this list of conditions and the following disclaimer. |
| 1248 | 2. Redistributions in binary form must reproduce the above copyright |
| 1249 | notice, this list of conditions and the following disclaimer in the |
| 1250 | documentation and/or other materials provided with the distribution. |
| 1251 | 3. Neither the name of the University nor the names of its contributors |
| 1252 | may be used to endorse or promote products derived from this software |
| 1253 | without specific prior written permission. |
| 1254 | |
| 1255 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1256 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1257 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1258 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1259 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1260 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1261 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1262 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1263 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1264 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1265 | SUCH DAMAGE. |
| 1266 | |
| 1267 | ------------------------------------------------------------------- |
| 1268 | |
| 1269 | Copyright (c) 1988 Regents of the University of California. |
| 1270 | All rights reserved. |
| 1271 | |
| 1272 | Redistribution and use in source and binary forms, with or without |
| 1273 | modification, are permitted provided that the following conditions |
| 1274 | are met: |
| 1275 | 1. Redistributions of source code must retain the above copyright |
| 1276 | notice, this list of conditions and the following disclaimer. |
| 1277 | 2. Redistributions in binary form must reproduce the above copyright |
| 1278 | notice, this list of conditions and the following disclaimer in the |
| 1279 | documentation and/or other materials provided with the distribution. |
| 1280 | 3. Neither the name of the University nor the names of its contributors |
| 1281 | may be used to endorse or promote products derived from this software |
| 1282 | without specific prior written permission. |
| 1283 | |
| 1284 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1285 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1286 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1287 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1288 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1289 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1290 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1291 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1292 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1293 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1294 | SUCH DAMAGE. |
| 1295 | |
| 1296 | ------------------------------------------------------------------- |
| 1297 | |
| 1298 | Copyright (c) 1988 The Regents of the University of California. |
| 1299 | All rights reserved. |
| 1300 | |
| 1301 | Redistribution and use in source and binary forms, with or without |
| 1302 | modification, are permitted provided that the following conditions |
| 1303 | are met: |
| 1304 | 1. Redistributions of source code must retain the above copyright |
| 1305 | notice, this list of conditions and the following disclaimer. |
| 1306 | 2. Redistributions in binary form must reproduce the above copyright |
| 1307 | notice, this list of conditions and the following disclaimer in the |
| 1308 | documentation and/or other materials provided with the distribution. |
| 1309 | 3. Neither the name of the University nor the names of its contributors |
| 1310 | may be used to endorse or promote products derived from this software |
| 1311 | without specific prior written permission. |
| 1312 | |
| 1313 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1314 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1315 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1316 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1317 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1318 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1319 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1320 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1321 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1322 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1323 | SUCH DAMAGE. |
| 1324 | |
| 1325 | ------------------------------------------------------------------- |
| 1326 | |
| 1327 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1328 | The Regents of the University of California. All rights reserved. |
| 1329 | |
| 1330 | Redistribution and use in source and binary forms, with or without |
| 1331 | modification, are permitted provided that the following conditions |
| 1332 | are met: |
| 1333 | 1. Redistributions of source code must retain the above copyright |
| 1334 | notice, this list of conditions and the following disclaimer. |
| 1335 | 2. Redistributions in binary form must reproduce the above copyright |
| 1336 | notice, this list of conditions and the following disclaimer in the |
| 1337 | documentation and/or other materials provided with the distribution. |
| 1338 | 3. All advertising materials mentioning features or use of this software |
| 1339 | must display the following acknowledgement: |
| 1340 | This product includes software developed by the University of |
| 1341 | California, Berkeley and its contributors. |
| 1342 | 4. Neither the name of the University nor the names of its contributors |
| 1343 | may be used to endorse or promote products derived from this software |
| 1344 | without specific prior written permission. |
| 1345 | |
| 1346 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1347 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1348 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1349 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1350 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1351 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1352 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1353 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1354 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1355 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1356 | SUCH DAMAGE. |
| 1357 | |
| 1358 | ------------------------------------------------------------------- |
| 1359 | |
| 1360 | Copyright (c) 1988, 1993 |
| 1361 | The Regents of the University of California. All rights reserved. |
| 1362 | |
| 1363 | Redistribution and use in source and binary forms, with or without |
| 1364 | modification, are permitted provided that the following conditions |
| 1365 | are met: |
| 1366 | 1. Redistributions of source code must retain the above copyright |
| 1367 | notice, this list of conditions and the following disclaimer. |
| 1368 | 2. Redistributions in binary form must reproduce the above copyright |
| 1369 | notice, this list of conditions and the following disclaimer in the |
| 1370 | documentation and/or other materials provided with the distribution. |
| 1371 | 3. Neither the name of the University nor the names of its contributors |
| 1372 | may be used to endorse or promote products derived from this software |
| 1373 | without specific prior written permission. |
| 1374 | |
| 1375 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1376 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1377 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1378 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1379 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1380 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1381 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1382 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1383 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1384 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1385 | SUCH DAMAGE. |
| 1386 | |
| 1387 | ------------------------------------------------------------------- |
| 1388 | |
| 1389 | Copyright (c) 1988, 1993 |
| 1390 | The Regents of the University of California. All rights reserved. |
| 1391 | |
| 1392 | This code is derived from software written by Ken Arnold and |
| 1393 | published in UNIX Review, Vol. 6, No. 8. |
| 1394 | |
| 1395 | Redistribution and use in source and binary forms, with or without |
| 1396 | modification, are permitted provided that the following conditions |
| 1397 | are met: |
| 1398 | 1. Redistributions of source code must retain the above copyright |
| 1399 | notice, this list of conditions and the following disclaimer. |
| 1400 | 2. Redistributions in binary form must reproduce the above copyright |
| 1401 | notice, this list of conditions and the following disclaimer in the |
| 1402 | documentation and/or other materials provided with the distribution. |
| 1403 | 3. Neither the name of the University nor the names of its contributors |
| 1404 | may be used to endorse or promote products derived from this software |
| 1405 | without specific prior written permission. |
| 1406 | |
| 1407 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1408 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1409 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1410 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1411 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1412 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1413 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1414 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1415 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1416 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1417 | SUCH DAMAGE. |
| 1418 | |
| 1419 | ------------------------------------------------------------------- |
| 1420 | |
| 1421 | Copyright (c) 1989 The Regents of the University of California. |
| 1422 | All rights reserved. |
| 1423 | |
| 1424 | Redistribution and use in source and binary forms are permitted |
| 1425 | provided that the above copyright notice and this paragraph are |
| 1426 | duplicated in all such forms and that any documentation, |
| 1427 | advertising materials, and other materials related to such |
| 1428 | distribution and use acknowledge that the software was developed |
| 1429 | by the University of California, Berkeley. The name of the |
| 1430 | University may not be used to endorse or promote products derived |
| 1431 | from this software without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1432 | THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1433 | IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
| 1434 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
| 1435 | |
| 1436 | ------------------------------------------------------------------- |
| 1437 | |
| 1438 | Copyright (c) 1989 The Regents of the University of California. |
| 1439 | All rights reserved. |
| 1440 | |
| 1441 | Redistribution and use in source and binary forms, with or without |
| 1442 | modification, are permitted provided that the following conditions |
| 1443 | are met: |
| 1444 | 1. Redistributions of source code must retain the above copyright |
| 1445 | notice, this list of conditions and the following disclaimer. |
| 1446 | 2. Redistributions in binary form must reproduce the above copyright |
| 1447 | notice, this list of conditions and the following disclaimer in the |
| 1448 | documentation and/or other materials provided with the distribution. |
| 1449 | 3. Neither the name of the University nor the names of its contributors |
| 1450 | may be used to endorse or promote products derived from this software |
| 1451 | without specific prior written permission. |
| 1452 | |
| 1453 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1454 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1455 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1456 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1457 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1458 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1459 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1460 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1461 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1462 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1463 | SUCH DAMAGE. |
| 1464 | |
| 1465 | ------------------------------------------------------------------- |
| 1466 | |
| 1467 | Copyright (c) 1989 The Regents of the University of California. |
| 1468 | All rights reserved. |
| 1469 | (c) UNIX System Laboratories, Inc. |
| 1470 | All or some portions of this file are derived from material licensed |
| 1471 | to the University of California by American Telephone and Telegraph |
| 1472 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1473 | the permission of UNIX System Laboratories, Inc. |
| 1474 | |
| 1475 | Redistribution and use in source and binary forms, with or without |
| 1476 | modification, are permitted provided that the following conditions |
| 1477 | are met: |
| 1478 | 1. Redistributions of source code must retain the above copyright |
| 1479 | notice, this list of conditions and the following disclaimer. |
| 1480 | 2. Redistributions in binary form must reproduce the above copyright |
| 1481 | notice, this list of conditions and the following disclaimer in the |
| 1482 | documentation and/or other materials provided with the distribution. |
| 1483 | 3. Neither the name of the University nor the names of its contributors |
| 1484 | may be used to endorse or promote products derived from this software |
| 1485 | without specific prior written permission. |
| 1486 | |
| 1487 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1488 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1489 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1490 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1491 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1492 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1493 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1494 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1495 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1496 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1497 | SUCH DAMAGE. |
| 1498 | |
| 1499 | ------------------------------------------------------------------- |
| 1500 | |
| 1501 | Copyright (c) 1989, 1993 |
| 1502 | The Regents of the University of California. All rights reserved. |
| 1503 | |
| 1504 | Redistribution and use in source and binary forms, with or without |
| 1505 | modification, are permitted provided that the following conditions |
| 1506 | are met: |
| 1507 | 1. Redistributions of source code must retain the above copyright |
| 1508 | notice, this list of conditions and the following disclaimer. |
| 1509 | 2. Redistributions in binary form must reproduce the above copyright |
| 1510 | notice, this list of conditions and the following disclaimer in the |
| 1511 | documentation and/or other materials provided with the distribution. |
| 1512 | 3. Neither the name of the University nor the names of its contributors |
| 1513 | may be used to endorse or promote products derived from this software |
| 1514 | without specific prior written permission. |
| 1515 | |
| 1516 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1517 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1518 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1519 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1520 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1521 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1522 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1523 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1524 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1525 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1526 | SUCH DAMAGE. |
| 1527 | |
| 1528 | ------------------------------------------------------------------- |
| 1529 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1530 | Copyright (c) 1989, 1993 |
| 1531 | The Regents of the University of California. All rights reserved. |
| 1532 | |
| 1533 | Redistribution and use in source and binary forms, with or without |
| 1534 | modification, are permitted provided that the following conditions |
| 1535 | are met: |
| 1536 | 1. Redistributions of source code must retain the above copyright |
| 1537 | notice, this list of conditions and the following disclaimer. |
| 1538 | 2. Redistributions in binary form must reproduce the above copyright |
| 1539 | notice, this list of conditions and the following disclaimer in the |
| 1540 | documentation and/or other materials provided with the distribution. |
| 1541 | 4. Neither the name of the University nor the names of its contributors |
| 1542 | may be used to endorse or promote products derived from this software |
| 1543 | without specific prior written permission. |
| 1544 | |
| 1545 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1546 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1547 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1548 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1549 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1550 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1551 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1552 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1553 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1554 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1555 | SUCH DAMAGE. |
| 1556 | |
| 1557 | ------------------------------------------------------------------- |
| 1558 | |
| 1559 | Copyright (c) 1989, 1993 |
| 1560 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1561 | |
| 1562 | This code is derived from software contributed to Berkeley by |
| 1563 | Roger L. Snyder. |
| 1564 | |
| 1565 | Redistribution and use in source and binary forms, with or without |
| 1566 | modification, are permitted provided that the following conditions |
| 1567 | are met: |
| 1568 | 1. Redistributions of source code must retain the above copyright |
| 1569 | notice, this list of conditions and the following disclaimer. |
| 1570 | 2. Redistributions in binary form must reproduce the above copyright |
| 1571 | notice, this list of conditions and the following disclaimer in the |
| 1572 | documentation and/or other materials provided with the distribution. |
| 1573 | 3. Neither the name of the University nor the names of its contributors |
| 1574 | may be used to endorse or promote products derived from this software |
| 1575 | without specific prior written permission. |
| 1576 | |
| 1577 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1578 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1579 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1580 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1581 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1582 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1583 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1584 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1585 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1586 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1587 | SUCH DAMAGE. |
| 1588 | |
| 1589 | ------------------------------------------------------------------- |
| 1590 | |
| 1591 | Copyright (c) 1989, 1993 |
| 1592 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1593 | (c) UNIX System Laboratories, Inc. |
| 1594 | All or some portions of this file are derived from material licensed |
| 1595 | to the University of California by American Telephone and Telegraph |
| 1596 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1597 | the permission of UNIX System Laboratories, Inc. |
| 1598 | |
| 1599 | Redistribution and use in source and binary forms, with or without |
| 1600 | modification, are permitted provided that the following conditions |
| 1601 | are met: |
| 1602 | 1. Redistributions of source code must retain the above copyright |
| 1603 | notice, this list of conditions and the following disclaimer. |
| 1604 | 2. Redistributions in binary form must reproduce the above copyright |
| 1605 | notice, this list of conditions and the following disclaimer in the |
| 1606 | documentation and/or other materials provided with the distribution. |
| 1607 | 3. Neither the name of the University nor the names of its contributors |
| 1608 | may be used to endorse or promote products derived from this software |
| 1609 | without specific prior written permission. |
| 1610 | |
| 1611 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1612 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1613 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1614 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1615 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1616 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1617 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1618 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1619 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1620 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1621 | SUCH DAMAGE. |
| 1622 | |
| 1623 | ------------------------------------------------------------------- |
| 1624 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1625 | Copyright (c) 1989, 1993, 1994 |
| 1626 | The Regents of the University of California. All rights reserved. |
| 1627 | |
| 1628 | Redistribution and use in source and binary forms, with or without |
| 1629 | modification, are permitted provided that the following conditions |
| 1630 | are met: |
| 1631 | 1. Redistributions of source code must retain the above copyright |
| 1632 | notice, this list of conditions and the following disclaimer. |
| 1633 | 2. Redistributions in binary form must reproduce the above copyright |
| 1634 | notice, this list of conditions and the following disclaimer in the |
| 1635 | documentation and/or other materials provided with the distribution. |
| 1636 | 3. Neither the name of the University nor the names of its contributors |
| 1637 | may be used to endorse or promote products derived from this software |
| 1638 | without specific prior written permission. |
| 1639 | |
| 1640 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1641 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1642 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1643 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1644 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1645 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1646 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1647 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1648 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1649 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1650 | SUCH DAMAGE. |
| 1651 | |
| 1652 | ------------------------------------------------------------------- |
| 1653 | |
| 1654 | Copyright (c) 1990 Regents of the University of California. |
| 1655 | All rights reserved. |
| 1656 | |
| 1657 | Redistribution and use in source and binary forms, with or without |
| 1658 | modification, are permitted provided that the following conditions |
| 1659 | are met: |
| 1660 | 1. Redistributions of source code must retain the above copyright |
| 1661 | notice, this list of conditions and the following disclaimer. |
| 1662 | 2. Redistributions in binary form must reproduce the above copyright |
| 1663 | notice, this list of conditions and the following disclaimer in the |
| 1664 | documentation and/or other materials provided with the distribution. |
| 1665 | 3. Neither the name of the University nor the names of its contributors |
| 1666 | may be used to endorse or promote products derived from this software |
| 1667 | without specific prior written permission. |
| 1668 | |
| 1669 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1670 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1671 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1672 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1673 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1674 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1675 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1676 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1677 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1678 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1679 | SUCH DAMAGE. |
| 1680 | |
| 1681 | ------------------------------------------------------------------- |
| 1682 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1683 | Copyright (c) 1990 The Regents of the University of California. |
| 1684 | All rights reserved. |
| 1685 | |
| 1686 | Redistribution and use in source and binary forms, with or without |
| 1687 | modification, are permitted provided that the following conditions |
| 1688 | are met: |
| 1689 | 1. Redistributions of source code must retain the above copyright |
| 1690 | notice, this list of conditions and the following disclaimer. |
| 1691 | 2. Redistributions in binary form must reproduce the above copyright |
| 1692 | notice, this list of conditions and the following disclaimer in the |
| 1693 | documentation and/or other materials provided with the distribution. |
| 1694 | 3. Neither the name of the University nor the names of its contributors |
| 1695 | may be used to endorse or promote products derived from this software |
| 1696 | without specific prior written permission. |
| 1697 | |
| 1698 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1699 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1700 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1701 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1702 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1703 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1704 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1705 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1706 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1707 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1708 | SUCH DAMAGE. |
| 1709 | |
| 1710 | ------------------------------------------------------------------- |
| 1711 | |
| 1712 | Copyright (c) 1990 The Regents of the University of California. |
| 1713 | All rights reserved. |
| 1714 | |
| 1715 | This code is derived from locore.s. |
| 1716 | |
| 1717 | Redistribution and use in source and binary forms, with or without |
| 1718 | modification, are permitted provided that the following conditions |
| 1719 | are met: |
| 1720 | 1. Redistributions of source code must retain the above copyright |
| 1721 | notice, this list of conditions and the following disclaimer. |
| 1722 | 2. Redistributions in binary form must reproduce the above copyright |
| 1723 | notice, this list of conditions and the following disclaimer in the |
| 1724 | documentation and/or other materials provided with the distribution. |
| 1725 | 3. Neither the name of the University nor the names of its contributors |
| 1726 | may be used to endorse or promote products derived from this software |
| 1727 | without specific prior written permission. |
| 1728 | |
| 1729 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1730 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1731 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1732 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1733 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1734 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1735 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1736 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1737 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1738 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1739 | SUCH DAMAGE. |
| 1740 | |
| 1741 | ------------------------------------------------------------------- |
| 1742 | |
| 1743 | Copyright (c) 1990 The Regents of the University of California. |
| 1744 | All rights reserved. |
| 1745 | |
| 1746 | This code is derived from software contributed to Berkeley by |
| 1747 | Chris Torek. |
| 1748 | |
| 1749 | Redistribution and use in source and binary forms, with or without |
| 1750 | modification, are permitted provided that the following conditions |
| 1751 | are met: |
| 1752 | 1. Redistributions of source code must retain the above copyright |
| 1753 | notice, this list of conditions and the following disclaimer. |
| 1754 | 2. Redistributions in binary form must reproduce the above copyright |
| 1755 | notice, this list of conditions and the following disclaimer in the |
| 1756 | documentation and/or other materials provided with the distribution. |
| 1757 | 3. Neither the name of the University nor the names of its contributors |
| 1758 | may be used to endorse or promote products derived from this software |
| 1759 | without specific prior written permission. |
| 1760 | |
| 1761 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1762 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1763 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1764 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1765 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1766 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1767 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1768 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1769 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1770 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1771 | SUCH DAMAGE. |
| 1772 | |
| 1773 | ------------------------------------------------------------------- |
| 1774 | |
| 1775 | Copyright (c) 1990 The Regents of the University of California. |
| 1776 | All rights reserved. |
| 1777 | |
| 1778 | This code is derived from software contributed to Berkeley by |
| 1779 | William Jolitz. |
| 1780 | |
| 1781 | Redistribution and use in source and binary forms, with or without |
| 1782 | modification, are permitted provided that the following conditions |
| 1783 | are met: |
| 1784 | 1. Redistributions of source code must retain the above copyright |
| 1785 | notice, this list of conditions and the following disclaimer. |
| 1786 | 2. Redistributions in binary form must reproduce the above copyright |
| 1787 | notice, this list of conditions and the following disclaimer in the |
| 1788 | documentation and/or other materials provided with the distribution. |
| 1789 | 3. Neither the name of the University nor the names of its contributors |
| 1790 | may be used to endorse or promote products derived from this software |
| 1791 | without specific prior written permission. |
| 1792 | |
| 1793 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1794 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1795 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1796 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1797 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1798 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1799 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1800 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1801 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1802 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1803 | SUCH DAMAGE. |
| 1804 | |
| 1805 | ------------------------------------------------------------------- |
| 1806 | |
| 1807 | Copyright (c) 1990, 1993 |
| 1808 | The Regents of the University of California. All rights reserved. |
| 1809 | |
| 1810 | Redistribution and use in source and binary forms, with or without |
| 1811 | modification, are permitted provided that the following conditions |
| 1812 | are met: |
| 1813 | 1. Redistributions of source code must retain the above copyright |
| 1814 | notice, this list of conditions and the following disclaimer. |
| 1815 | 2. Redistributions in binary form must reproduce the above copyright |
| 1816 | notice, this list of conditions and the following disclaimer in the |
| 1817 | documentation and/or other materials provided with the distribution. |
| 1818 | 3. Neither the name of the University nor the names of its contributors |
| 1819 | may be used to endorse or promote products derived from this software |
| 1820 | without specific prior written permission. |
| 1821 | |
| 1822 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1823 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1824 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1825 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1826 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1827 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1828 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1829 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1830 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1831 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1832 | SUCH DAMAGE. |
| 1833 | |
| 1834 | ------------------------------------------------------------------- |
| 1835 | |
| 1836 | Copyright (c) 1990, 1993 |
| 1837 | The Regents of the University of California. All rights reserved. |
| 1838 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1839 | This code is derived from software contributed to Berkeley by |
| 1840 | Chris Torek. |
| 1841 | |
| 1842 | Redistribution and use in source and binary forms, with or without |
| 1843 | modification, are permitted provided that the following conditions |
| 1844 | are met: |
| 1845 | 1. Redistributions of source code must retain the above copyright |
| 1846 | notice, this list of conditions and the following disclaimer. |
| 1847 | 2. Redistributions in binary form must reproduce the above copyright |
| 1848 | notice, this list of conditions and the following disclaimer in the |
| 1849 | documentation and/or other materials provided with the distribution. |
| 1850 | 3. Neither the name of the University nor the names of its contributors |
| 1851 | may be used to endorse or promote products derived from this software |
| 1852 | without specific prior written permission. |
| 1853 | |
| 1854 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1855 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1856 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1857 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1858 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1859 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1860 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1861 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1862 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1863 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1864 | SUCH DAMAGE. |
| 1865 | |
| 1866 | ------------------------------------------------------------------- |
| 1867 | |
| 1868 | Copyright (c) 1990, 1993 |
| 1869 | The Regents of the University of California. All rights reserved. |
| 1870 | |
| 1871 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1872 | Donn Seeley at UUNET Technologies, Inc. |
| 1873 | |
| 1874 | Redistribution and use in source and binary forms, with or without |
| 1875 | modification, are permitted provided that the following conditions |
| 1876 | are met: |
| 1877 | 1. Redistributions of source code must retain the above copyright |
| 1878 | notice, this list of conditions and the following disclaimer. |
| 1879 | 2. Redistributions in binary form must reproduce the above copyright |
| 1880 | notice, this list of conditions and the following disclaimer in the |
| 1881 | documentation and/or other materials provided with the distribution. |
| 1882 | 3. Neither the name of the University nor the names of its contributors |
| 1883 | may be used to endorse or promote products derived from this software |
| 1884 | without specific prior written permission. |
| 1885 | |
| 1886 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1887 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1888 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1889 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1890 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1891 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1892 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1893 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1894 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1895 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1896 | SUCH DAMAGE. |
| 1897 | |
| 1898 | ------------------------------------------------------------------- |
| 1899 | |
| 1900 | Copyright (c) 1990, 1993 |
| 1901 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 1902 | |
| 1903 | This code is derived from software contributed to Berkeley by |
| 1904 | Donn Seeley at UUNET Technologies, Inc. |
| 1905 | |
| 1906 | Redistribution and use in source and binary forms, with or without |
| 1907 | modification, are permitted provided that the following conditions |
| 1908 | are met: |
| 1909 | 1. Redistributions of source code must retain the above copyright |
| 1910 | notice, this list of conditions and the following disclaimer. |
| 1911 | 2. Redistributions in binary form must reproduce the above copyright |
| 1912 | notice, this list of conditions and the following disclaimer in the |
| 1913 | documentation and/or other materials provided with the distribution. |
| 1914 | 4. Neither the name of the University nor the names of its contributors |
| 1915 | may be used to endorse or promote products derived from this software |
| 1916 | without specific prior written permission. |
| 1917 | |
| 1918 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1919 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1920 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1921 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1922 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1923 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1924 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1925 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1926 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1927 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1928 | SUCH DAMAGE. |
| 1929 | |
| 1930 | ------------------------------------------------------------------- |
| 1931 | |
| 1932 | Copyright (c) 1990, 1993 |
| 1933 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1934 | (c) UNIX System Laboratories, Inc. |
| 1935 | All or some portions of this file are derived from material licensed |
| 1936 | to the University of California by American Telephone and Telegraph |
| 1937 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1938 | the permission of UNIX System Laboratories, Inc. |
| 1939 | |
| 1940 | Redistribution and use in source and binary forms, with or without |
| 1941 | modification, are permitted provided that the following conditions |
| 1942 | are met: |
| 1943 | 1. Redistributions of source code must retain the above copyright |
| 1944 | notice, this list of conditions and the following disclaimer. |
| 1945 | 2. Redistributions in binary form must reproduce the above copyright |
| 1946 | notice, this list of conditions and the following disclaimer in the |
| 1947 | documentation and/or other materials provided with the distribution. |
| 1948 | 3. Neither the name of the University nor the names of its contributors |
| 1949 | may be used to endorse or promote products derived from this software |
| 1950 | without specific prior written permission. |
| 1951 | |
| 1952 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1953 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1954 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1955 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1956 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1957 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1958 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1959 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1960 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1961 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1962 | SUCH DAMAGE. |
| 1963 | |
| 1964 | ------------------------------------------------------------------- |
| 1965 | |
| 1966 | Copyright (c) 1990, 1993, 1994 |
| 1967 | The Regents of the University of California. All rights reserved. |
| 1968 | |
| 1969 | Redistribution and use in source and binary forms, with or without |
| 1970 | modification, are permitted provided that the following conditions |
| 1971 | are met: |
| 1972 | 1. Redistributions of source code must retain the above copyright |
| 1973 | notice, this list of conditions and the following disclaimer. |
| 1974 | 2. Redistributions in binary form must reproduce the above copyright |
| 1975 | notice, this list of conditions and the following disclaimer in the |
| 1976 | documentation and/or other materials provided with the distribution. |
| 1977 | 3. Neither the name of the University nor the names of its contributors |
| 1978 | may be used to endorse or promote products derived from this software |
| 1979 | without specific prior written permission. |
| 1980 | |
| 1981 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1982 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1983 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1984 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1985 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1986 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1987 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1988 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1989 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1990 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1991 | SUCH DAMAGE. |
| 1992 | |
| 1993 | ------------------------------------------------------------------- |
| 1994 | |
| 1995 | Copyright (c) 1990, 1993, 1994 |
| 1996 | The Regents of the University of California. All rights reserved. |
| 1997 | |
| 1998 | This code is derived from software contributed to Berkeley by |
| 1999 | Chris Torek. |
| 2000 | |
| 2001 | Redistribution and use in source and binary forms, with or without |
| 2002 | modification, are permitted provided that the following conditions |
| 2003 | are met: |
| 2004 | 1. Redistributions of source code must retain the above copyright |
| 2005 | notice, this list of conditions and the following disclaimer. |
| 2006 | 2. Redistributions in binary form must reproduce the above copyright |
| 2007 | notice, this list of conditions and the following disclaimer in the |
| 2008 | documentation and/or other materials provided with the distribution. |
| 2009 | 3. Neither the name of the University nor the names of its contributors |
| 2010 | may be used to endorse or promote products derived from this software |
| 2011 | without specific prior written permission. |
| 2012 | |
| 2013 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2014 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2015 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2016 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2017 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2018 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2019 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2020 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2021 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2022 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2023 | SUCH DAMAGE. |
| 2024 | |
| 2025 | ------------------------------------------------------------------- |
| 2026 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2027 | Copyright (c) 1991 The Regents of the University of California. |
| 2028 | All rights reserved. |
| 2029 | |
| 2030 | Redistribution and use in source and binary forms, with or without |
| 2031 | modification, are permitted provided that the following conditions |
| 2032 | are met: |
| 2033 | 1. Redistributions of source code must retain the above copyright |
| 2034 | notice, this list of conditions and the following disclaimer. |
| 2035 | 2. Redistributions in binary form must reproduce the above copyright |
| 2036 | notice, this list of conditions and the following disclaimer in the |
| 2037 | documentation and/or other materials provided with the distribution. |
| 2038 | 3. Neither the name of the University nor the names of its contributors |
| 2039 | may be used to endorse or promote products derived from this software |
| 2040 | without specific prior written permission. |
| 2041 | |
| 2042 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2043 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2044 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2045 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2046 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2047 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2048 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2049 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2050 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2051 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2052 | SUCH DAMAGE. |
| 2053 | |
| 2054 | ------------------------------------------------------------------- |
| 2055 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2056 | Copyright (c) 1991, 1993 |
| 2057 | The Regents of the University of California. All rights reserved. |
| 2058 | |
| 2059 | Redistribution and use in source and binary forms, with or without |
| 2060 | modification, are permitted provided that the following conditions |
| 2061 | are met: |
| 2062 | 1. Redistributions of source code must retain the above copyright |
| 2063 | notice, this list of conditions and the following disclaimer. |
| 2064 | 2. Redistributions in binary form must reproduce the above copyright |
| 2065 | notice, this list of conditions and the following disclaimer in the |
| 2066 | documentation and/or other materials provided with the distribution. |
| 2067 | 3. Neither the name of the University nor the names of its contributors |
| 2068 | may be used to endorse or promote products derived from this software |
| 2069 | without specific prior written permission. |
| 2070 | |
| 2071 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2072 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2073 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2074 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2075 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2076 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2077 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2078 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2079 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2080 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2081 | SUCH DAMAGE. |
| 2082 | |
| 2083 | ------------------------------------------------------------------- |
| 2084 | |
| 2085 | Copyright (c) 1991, 1993 |
| 2086 | The Regents of the University of California. All rights reserved. |
| 2087 | |
| 2088 | This code is derived from software contributed to Berkeley by |
| 2089 | Berkeley Software Design, Inc. |
| 2090 | |
| 2091 | Redistribution and use in source and binary forms, with or without |
| 2092 | modification, are permitted provided that the following conditions |
| 2093 | are met: |
| 2094 | 1. Redistributions of source code must retain the above copyright |
| 2095 | notice, this list of conditions and the following disclaimer. |
| 2096 | 2. Redistributions in binary form must reproduce the above copyright |
| 2097 | notice, this list of conditions and the following disclaimer in the |
| 2098 | documentation and/or other materials provided with the distribution. |
| 2099 | 3. Neither the name of the University nor the names of its contributors |
| 2100 | may be used to endorse or promote products derived from this software |
| 2101 | without specific prior written permission. |
| 2102 | |
| 2103 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2104 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2105 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2106 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2107 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2108 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2109 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2110 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2111 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2112 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2113 | SUCH DAMAGE. |
| 2114 | |
| 2115 | ------------------------------------------------------------------- |
| 2116 | |
| 2117 | Copyright (c) 1991, 1993 |
| 2118 | The Regents of the University of California. All rights reserved. |
| 2119 | (c) UNIX System Laboratories, Inc. |
| 2120 | All or some portions of this file are derived from material licensed |
| 2121 | to the University of California by American Telephone and Telegraph |
| 2122 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2123 | the permission of UNIX System Laboratories, Inc. |
| 2124 | |
| 2125 | This code is derived from software contributed to Berkeley by |
| 2126 | Hugh Smith at The University of Guelph. |
| 2127 | |
| 2128 | Redistribution and use in source and binary forms, with or without |
| 2129 | modification, are permitted provided that the following conditions |
| 2130 | are met: |
| 2131 | 1. Redistributions of source code must retain the above copyright |
| 2132 | notice, this list of conditions and the following disclaimer. |
| 2133 | 2. Redistributions in binary form must reproduce the above copyright |
| 2134 | notice, this list of conditions and the following disclaimer in the |
| 2135 | documentation and/or other materials provided with the distribution. |
| 2136 | 3. Neither the name of the University nor the names of its contributors |
| 2137 | may be used to endorse or promote products derived from this software |
| 2138 | without specific prior written permission. |
| 2139 | |
| 2140 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2141 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2142 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2143 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2144 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2145 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2146 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2147 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2148 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2149 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2150 | SUCH DAMAGE. |
| 2151 | |
| 2152 | ------------------------------------------------------------------- |
| 2153 | |
| 2154 | Copyright (c) 1991, 1993, 1995, |
| 2155 | The Regents of the University of California. All rights reserved. |
| 2156 | |
| 2157 | This code is derived from software contributed to Berkeley by |
| 2158 | Havard Eidnes. |
| 2159 | |
| 2160 | Redistribution and use in source and binary forms, with or without |
| 2161 | modification, are permitted provided that the following conditions |
| 2162 | are met: |
| 2163 | 1. Redistributions of source code must retain the above copyright |
| 2164 | notice, this list of conditions and the following disclaimer. |
| 2165 | 2. Redistributions in binary form must reproduce the above copyright |
| 2166 | notice, this list of conditions and the following disclaimer in the |
| 2167 | documentation and/or other materials provided with the distribution. |
| 2168 | 3. Neither the name of the University nor the names of its contributors |
| 2169 | may be used to endorse or promote products derived from this software |
| 2170 | without specific prior written permission. |
| 2171 | |
| 2172 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2173 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2174 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2175 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2176 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2177 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2178 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2179 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2180 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2181 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2182 | SUCH DAMAGE. |
| 2183 | |
| 2184 | ------------------------------------------------------------------- |
| 2185 | |
| 2186 | Copyright (c) 1992 Henry Spencer. |
| 2187 | Copyright (c) 1992, 1993 |
| 2188 | The Regents of the University of California. All rights reserved. |
| 2189 | |
| 2190 | This code is derived from software contributed to Berkeley by |
| 2191 | Henry Spencer of the University of Toronto. |
| 2192 | |
| 2193 | Redistribution and use in source and binary forms, with or without |
| 2194 | modification, are permitted provided that the following conditions |
| 2195 | are met: |
| 2196 | 1. Redistributions of source code must retain the above copyright |
| 2197 | notice, this list of conditions and the following disclaimer. |
| 2198 | 2. Redistributions in binary form must reproduce the above copyright |
| 2199 | notice, this list of conditions and the following disclaimer in the |
| 2200 | documentation and/or other materials provided with the distribution. |
| 2201 | 3. Neither the name of the University nor the names of its contributors |
| 2202 | may be used to endorse or promote products derived from this software |
| 2203 | without specific prior written permission. |
| 2204 | |
| 2205 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2206 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2207 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2208 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2209 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2210 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2211 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2212 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2213 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2214 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2215 | SUCH DAMAGE. |
| 2216 | |
| 2217 | ------------------------------------------------------------------- |
| 2218 | |
| 2219 | Copyright (c) 1992 The Regents of the University of California. |
| 2220 | All rights reserved. |
| 2221 | |
| 2222 | Redistribution and use in source and binary forms, with or without |
| 2223 | modification, are permitted provided that the following conditions |
| 2224 | are met: |
| 2225 | 1. Redistributions of source code must retain the above copyright |
| 2226 | notice, this list of conditions and the following disclaimer. |
| 2227 | 2. Redistributions in binary form must reproduce the above copyright |
| 2228 | notice, this list of conditions and the following disclaimer in the |
| 2229 | documentation and/or other materials provided with the distribution. |
| 2230 | 3. Neither the name of the University nor the names of its contributors |
| 2231 | may be used to endorse or promote products derived from this software |
| 2232 | without specific prior written permission. |
| 2233 | |
| 2234 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2235 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2236 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2237 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2238 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2239 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2240 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2241 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2242 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2243 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2244 | SUCH DAMAGE. |
| 2245 | |
| 2246 | ------------------------------------------------------------------- |
| 2247 | |
| 2248 | Copyright (c) 1992, 1993 |
| 2249 | The Regents of the University of California. All rights reserved. |
| 2250 | |
| 2251 | Redistribution and use in source and binary forms, with or without |
| 2252 | modification, are permitted provided that the following conditions |
| 2253 | are met: |
| 2254 | 1. Redistributions of source code must retain the above copyright |
| 2255 | notice, this list of conditions and the following disclaimer. |
| 2256 | 2. Redistributions in binary form must reproduce the above copyright |
| 2257 | notice, this list of conditions and the following disclaimer in the |
| 2258 | documentation and/or other materials provided with the distribution. |
| 2259 | 3. Neither the name of the University nor the names of its contributors |
| 2260 | may be used to endorse or promote products derived from this software |
| 2261 | without specific prior written permission. |
| 2262 | |
| 2263 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2264 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2265 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2266 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2267 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2268 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2269 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2270 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2271 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2272 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2273 | SUCH DAMAGE. |
| 2274 | |
| 2275 | ------------------------------------------------------------------- |
| 2276 | |
| 2277 | Copyright (c) 1992, 1993 |
| 2278 | The Regents of the University of California. All rights reserved. |
| 2279 | |
| 2280 | This code is derived from software contributed to Berkeley by |
| 2281 | Ralph Campbell. |
| 2282 | |
| 2283 | Redistribution and use in source and binary forms, with or without |
| 2284 | modification, are permitted provided that the following conditions |
| 2285 | are met: |
| 2286 | 1. Redistributions of source code must retain the above copyright |
| 2287 | notice, this list of conditions and the following disclaimer. |
| 2288 | 2. Redistributions in binary form must reproduce the above copyright |
| 2289 | notice, this list of conditions and the following disclaimer in the |
| 2290 | documentation and/or other materials provided with the distribution. |
| 2291 | 3. Neither the name of the University nor the names of its contributors |
| 2292 | may be used to endorse or promote products derived from this software |
| 2293 | without specific prior written permission. |
| 2294 | |
| 2295 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2296 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2297 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2298 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2299 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2300 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2301 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2302 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2303 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2304 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2305 | SUCH DAMAGE. |
| 2306 | |
| 2307 | ------------------------------------------------------------------- |
| 2308 | |
| 2309 | Copyright (c) 1992, 1993 |
| 2310 | The Regents of the University of California. All rights reserved. |
| 2311 | |
| 2312 | This code is derived from software contributed to Berkeley by |
| 2313 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2314 | Architecture book by Gerry Kane. |
| 2315 | |
| 2316 | Redistribution and use in source and binary forms, with or without |
| 2317 | modification, are permitted provided that the following conditions |
| 2318 | are met: |
| 2319 | 1. Redistributions of source code must retain the above copyright |
| 2320 | notice, this list of conditions and the following disclaimer. |
| 2321 | 2. Redistributions in binary form must reproduce the above copyright |
| 2322 | notice, this list of conditions and the following disclaimer in the |
| 2323 | documentation and/or other materials provided with the distribution. |
| 2324 | 3. Neither the name of the University nor the names of its contributors |
| 2325 | may be used to endorse or promote products derived from this software |
| 2326 | without specific prior written permission. |
| 2327 | |
| 2328 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2329 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2330 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2331 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2332 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2333 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2334 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2335 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2336 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2337 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2338 | SUCH DAMAGE. |
| 2339 | |
| 2340 | ------------------------------------------------------------------- |
| 2341 | |
| 2342 | Copyright (c) 1992, 1993 |
| 2343 | The Regents of the University of California. All rights reserved. |
| 2344 | |
| 2345 | This software was developed by the Computer Systems Engineering group |
| 2346 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2347 | contributed to Berkeley. |
| 2348 | |
| 2349 | All advertising materials mentioning features or use of this software |
| 2350 | must display the following acknowledgement: |
| 2351 | This product includes software developed by the University of |
| 2352 | California, Lawrence Berkeley Laboratory. |
| 2353 | |
| 2354 | Redistribution and use in source and binary forms, with or without |
| 2355 | modification, are permitted provided that the following conditions |
| 2356 | are met: |
| 2357 | 1. Redistributions of source code must retain the above copyright |
| 2358 | notice, this list of conditions and the following disclaimer. |
| 2359 | 2. Redistributions in binary form must reproduce the above copyright |
| 2360 | notice, this list of conditions and the following disclaimer in the |
| 2361 | documentation and/or other materials provided with the distribution. |
| 2362 | 3. All advertising materials mentioning features or use of this software |
| 2363 | must display the following acknowledgement: |
| 2364 | This product includes software developed by the University of |
| 2365 | California, Berkeley and its contributors. |
| 2366 | 4. Neither the name of the University nor the names of its contributors |
| 2367 | may be used to endorse or promote products derived from this software |
| 2368 | without specific prior written permission. |
| 2369 | |
| 2370 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2371 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2372 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2373 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2374 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2375 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2376 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2377 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2378 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2379 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2380 | SUCH DAMAGE. |
| 2381 | |
| 2382 | ------------------------------------------------------------------- |
| 2383 | |
| 2384 | Copyright (c) 1992, 1993 |
| 2385 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2386 | (c) UNIX System Laboratories, Inc. |
| 2387 | All or some portions of this file are derived from material licensed |
| 2388 | to the University of California by American Telephone and Telegraph |
| 2389 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2390 | the permission of UNIX System Laboratories, Inc. |
| 2391 | |
| 2392 | Redistribution and use in source and binary forms, with or without |
| 2393 | modification, are permitted provided that the following conditions |
| 2394 | are met: |
| 2395 | 1. Redistributions of source code must retain the above copyright |
| 2396 | notice, this list of conditions and the following disclaimer. |
| 2397 | 2. Redistributions in binary form must reproduce the above copyright |
| 2398 | notice, this list of conditions and the following disclaimer in the |
| 2399 | documentation and/or other materials provided with the distribution. |
| 2400 | 3. Neither the name of the University nor the names of its contributors |
| 2401 | may be used to endorse or promote products derived from this software |
| 2402 | without specific prior written permission. |
| 2403 | |
| 2404 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2405 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2406 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2407 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2408 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2409 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2410 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2411 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2412 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2413 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2414 | SUCH DAMAGE. |
| 2415 | |
| 2416 | ------------------------------------------------------------------- |
| 2417 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2418 | Copyright (c) 1992, 1993, 1994 |
| 2419 | The Regents of the University of California. All rights reserved. |
| 2420 | |
| 2421 | This code is derived from software contributed to Berkeley by |
| 2422 | Henry Spencer. |
| 2423 | |
| 2424 | Redistribution and use in source and binary forms, with or without |
| 2425 | modification, are permitted provided that the following conditions |
| 2426 | are met: |
| 2427 | 1. Redistributions of source code must retain the above copyright |
| 2428 | notice, this list of conditions and the following disclaimer. |
| 2429 | 2. Redistributions in binary form must reproduce the above copyright |
| 2430 | notice, this list of conditions and the following disclaimer in the |
| 2431 | documentation and/or other materials provided with the distribution. |
| 2432 | 3. Neither the name of the University nor the names of its contributors |
| 2433 | may be used to endorse or promote products derived from this software |
| 2434 | without specific prior written permission. |
| 2435 | |
| 2436 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2437 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2438 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2439 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2440 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2441 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2442 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2443 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2444 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2445 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2446 | SUCH DAMAGE. |
| 2447 | |
| 2448 | ------------------------------------------------------------------- |
| 2449 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2450 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2451 | |
| 2452 | This code is derived from software contributed to Berkeley by |
| 2453 | Henry Spencer. |
| 2454 | |
| 2455 | Redistribution and use in source and binary forms, with or without |
| 2456 | modification, are permitted provided that the following conditions |
| 2457 | are met: |
| 2458 | 1. Redistributions of source code must retain the above copyright |
| 2459 | notice, this list of conditions and the following disclaimer. |
| 2460 | 2. Redistributions in binary form must reproduce the above copyright |
| 2461 | notice, this list of conditions and the following disclaimer in the |
| 2462 | documentation and/or other materials provided with the distribution. |
| 2463 | 3. All advertising materials mentioning features or use of this software |
| 2464 | must display the following acknowledgement: |
| 2465 | This product includes software developed by the University of |
| 2466 | California, Berkeley and its contributors. |
| 2467 | 4. Neither the name of the University nor the names of its contributors |
| 2468 | may be used to endorse or promote products derived from this software |
| 2469 | without specific prior written permission. |
| 2470 | |
| 2471 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2472 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2473 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2474 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2475 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2476 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2477 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2478 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2479 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2480 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2481 | SUCH DAMAGE. |
| 2482 | |
| 2483 | ------------------------------------------------------------------- |
| 2484 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2485 | Copyright (c) 1993 |
| 2486 | The Regents of the University of California. All rights reserved. |
| 2487 | |
| 2488 | Redistribution and use in source and binary forms, with or without |
| 2489 | modification, are permitted provided that the following conditions |
| 2490 | are met: |
| 2491 | 1. Redistributions of source code must retain the above copyright |
| 2492 | notice, this list of conditions and the following disclaimer. |
| 2493 | 2. Redistributions in binary form must reproduce the above copyright |
| 2494 | notice, this list of conditions and the following disclaimer in the |
| 2495 | documentation and/or other materials provided with the distribution. |
| 2496 | 3. Neither the name of the University nor the names of its contributors |
| 2497 | may be used to endorse or promote products derived from this software |
| 2498 | without specific prior written permission. |
| 2499 | |
| 2500 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2501 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2502 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2503 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2504 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2505 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2506 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2507 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2508 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2509 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2510 | SUCH DAMAGE. |
| 2511 | |
| 2512 | ------------------------------------------------------------------- |
| 2513 | |
| 2514 | Copyright (c) 1993 |
| 2515 | The Regents of the University of California. All rights reserved. |
| 2516 | |
| 2517 | Redistribution and use in source and binary forms, with or without |
| 2518 | modification, are permitted provided that the following conditions |
| 2519 | are met: |
| 2520 | 1. Redistributions of source code must retain the above copyright |
| 2521 | notice, this list of conditions and the following disclaimer. |
| 2522 | 2. Redistributions in binary form must reproduce the above copyright |
| 2523 | notice, this list of conditions and the following disclaimer in the |
| 2524 | documentation and/or other materials provided with the distribution. |
| 2525 | 3. Neither the name of the University nor the names of its contributors |
| 2526 | may be used to endorse or promote products derived from this software |
| 2527 | without specific prior written permission. |
| 2528 | |
| 2529 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2530 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2531 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2532 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2533 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2534 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2535 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2536 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2537 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2538 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2539 | SUCH DAMAGE. |
| 2540 | |
| 2541 | ------------------------------------------------------------------- |
| 2542 | |
| 2543 | Copyright (c) 1993 Christopher G. Demetriou |
| 2544 | All rights reserved. |
| 2545 | |
| 2546 | Redistribution and use in source and binary forms, with or without |
| 2547 | modification, are permitted provided that the following conditions |
| 2548 | are met: |
| 2549 | 1. Redistributions of source code must retain the above copyright |
| 2550 | notice, this list of conditions and the following disclaimer. |
| 2551 | 2. Redistributions in binary form must reproduce the above copyright |
| 2552 | notice, this list of conditions and the following disclaimer in the |
| 2553 | documentation and/or other materials provided with the distribution. |
| 2554 | 3. The name of the author may not be used to endorse or promote products |
| 2555 | derived from this software without specific prior written permission |
| 2556 | |
| 2557 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2558 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2559 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2560 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2561 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2562 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2563 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2564 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2565 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2566 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2567 | |
| 2568 | ------------------------------------------------------------------- |
| 2569 | |
| 2570 | Copyright (c) 1993 Martin Birgmeier |
| 2571 | All rights reserved. |
| 2572 | |
| 2573 | You may redistribute unmodified or modified versions of this source |
| 2574 | code provided that the above copyright notice and this and the |
| 2575 | following conditions are retained. |
| 2576 | |
| 2577 | This software is provided ``as is'', and comes with no warranties |
| 2578 | of any kind. I shall in no event be liable for anything that happens |
| 2579 | to anyone/anything when using this software. |
| 2580 | |
| 2581 | ------------------------------------------------------------------- |
| 2582 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2583 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2584 | All rights reserved. |
| 2585 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2586 | Redistribution and use in source and binary forms, with or without |
| 2587 | modification, are permitted provided that the following conditions |
| 2588 | are met: |
| 2589 | 1. Redistributions of source code must retain the above copyright |
| 2590 | notice, this list of conditions and the following disclaimer. |
| 2591 | 2. Redistributions in binary form must reproduce the above copyright |
| 2592 | notice, this list of conditions and the following disclaimer in the |
| 2593 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2594 | 3. The name of the author may not be used to endorse or promote products |
| 2595 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2596 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2597 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2598 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2599 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2600 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2601 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2602 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2603 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2604 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2605 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2606 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2607 | |
| 2608 | ------------------------------------------------------------------- |
| 2609 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2610 | Copyright (c) 1995, 1996 Carnegie-Mellon University. |
| 2611 | All rights reserved. |
| 2612 | |
| 2613 | Author: Chris G. Demetriou |
| 2614 | |
| 2615 | Permission to use, copy, modify and distribute this software and |
| 2616 | its documentation is hereby granted, provided that both the copyright |
| 2617 | notice and this permission notice appear in all copies of the |
| 2618 | software, derivative works or modified versions, and any portions |
| 2619 | thereof, and that both notices appear in supporting documentation. |
| 2620 | |
| 2621 | CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" |
| 2622 | CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND |
| 2623 | FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. |
| 2624 | |
| 2625 | Carnegie Mellon requests users of this software to return to |
| 2626 | |
| 2627 | Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU |
| 2628 | School of Computer Science |
| 2629 | Carnegie Mellon University |
| 2630 | Pittsburgh PA 15213-3890 |
| 2631 | |
| 2632 | any improvements or extensions that they make and grant Carnegie the |
| 2633 | rights to redistribute these changes. |
| 2634 | |
| 2635 | ------------------------------------------------------------------- |
| 2636 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2637 | Copyright (c) 1996 by Internet Software Consortium. |
| 2638 | |
| 2639 | Permission to use, copy, modify, and distribute this software for any |
| 2640 | purpose with or without fee is hereby granted, provided that the above |
| 2641 | copyright notice and this permission notice appear in all copies. |
| 2642 | |
| 2643 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2644 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2645 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2646 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2647 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2648 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2649 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2650 | SOFTWARE. |
| 2651 | |
| 2652 | ------------------------------------------------------------------- |
| 2653 | |
| 2654 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2655 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2656 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2657 | |
| 2658 | Permission to use, copy, modify, and distribute this software for any |
| 2659 | purpose with or without fee is hereby granted, provided that the above |
| 2660 | copyright notice and this permission notice appear in all copies. |
| 2661 | |
| 2662 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2663 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2664 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2665 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2666 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2667 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2668 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2669 | |
| 2670 | ------------------------------------------------------------------- |
| 2671 | |
| 2672 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2673 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2674 | |
| 2675 | Permission to use, copy, modify, and distribute this software for any |
| 2676 | purpose with or without fee is hereby granted, provided that the above |
| 2677 | copyright notice and this permission notice appear in all copies. |
| 2678 | |
| 2679 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2680 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2681 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2682 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2683 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2684 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2685 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2686 | |
| 2687 | ------------------------------------------------------------------- |
| 2688 | |
| 2689 | Copyright (c) 1996-2004 Per Fogelstrom, Opsycon AB |
| 2690 | |
| 2691 | Redistribution and use in source and binary forms, with or without |
| 2692 | modification, are permitted provided that the following conditions |
| 2693 | are met: |
| 2694 | 1. Redistributions of source code must retain the above copyright |
| 2695 | notice, this list of conditions and the following disclaimer. |
| 2696 | 2. Redistributions in binary form must reproduce the above copyright |
| 2697 | notice, this list of conditions and the following disclaimer in the |
| 2698 | documentation and/or other materials provided with the distribution. |
| 2699 | |
| 2700 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 2701 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 2702 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2703 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 2704 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2705 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2706 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2707 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2708 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2709 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2710 | SUCH DAMAGE. |
| 2711 | |
| 2712 | ------------------------------------------------------------------- |
| 2713 | |
| 2714 | Copyright (c) 1997 Mark Brinicombe |
| 2715 | All rights reserved. |
| 2716 | |
| 2717 | Redistribution and use in source and binary forms, with or without |
| 2718 | modification, are permitted provided that the following conditions |
| 2719 | are met: |
| 2720 | 1. Redistributions of source code must retain the above copyright |
| 2721 | notice, this list of conditions and the following disclaimer. |
| 2722 | 2. Redistributions in binary form must reproduce the above copyright |
| 2723 | notice, this list of conditions and the following disclaimer in the |
| 2724 | documentation and/or other materials provided with the distribution. |
| 2725 | 3. All advertising materials mentioning features or use of this software |
| 2726 | must display the following acknowledgement: |
| 2727 | This product includes software developed by Mark Brinicombe |
| 2728 | 4. Neither the name of the University nor the names of its contributors |
| 2729 | may be used to endorse or promote products derived from this software |
| 2730 | without specific prior written permission. |
| 2731 | |
| 2732 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2733 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2734 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2735 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2736 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2737 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2738 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2739 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2740 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2741 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2742 | SUCH DAMAGE. |
| 2743 | |
| 2744 | ------------------------------------------------------------------- |
| 2745 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2746 | Copyright (c) 1997 Mark Brinicombe |
| 2747 | Copyright (c) 2010 Android Open Source Project. |
| 2748 | All rights reserved. |
| 2749 | |
| 2750 | Redistribution and use in source and binary forms, with or without |
| 2751 | modification, are permitted provided that the following conditions |
| 2752 | are met: |
| 2753 | 1. Redistributions of source code must retain the above copyright |
| 2754 | notice, this list of conditions and the following disclaimer. |
| 2755 | 2. Redistributions in binary form must reproduce the above copyright |
| 2756 | notice, this list of conditions and the following disclaimer in the |
| 2757 | documentation and/or other materials provided with the distribution. |
| 2758 | 3. All advertising materials mentioning features or use of this software |
| 2759 | must display the following acknowledgement: |
| 2760 | This product includes software developed by Mark Brinicombe |
| 2761 | 4. Neither the name of the University nor the names of its contributors |
| 2762 | may be used to endorse or promote products derived from this software |
| 2763 | without specific prior written permission. |
| 2764 | |
| 2765 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2766 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2767 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2768 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2769 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2770 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2771 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2772 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2773 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2774 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2775 | SUCH DAMAGE. |
| 2776 | |
| 2777 | ------------------------------------------------------------------- |
| 2778 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2779 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2780 | |
| 2781 | Redistribution and use in source and binary forms, with or without |
| 2782 | modification, are permitted provided that the following conditions |
| 2783 | are met: |
| 2784 | 1. Redistributions of source code must retain the above copyright |
| 2785 | notice, this list of conditions and the following disclaimer. |
| 2786 | 2. Redistributions in binary form must reproduce the above copyright |
| 2787 | notice, this list of conditions and the following disclaimer in the |
| 2788 | documentation and/or other materials provided with the distribution. |
| 2789 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2790 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2791 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2792 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2793 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2794 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2795 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2796 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2797 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2798 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2799 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2800 | |
| 2801 | ------------------------------------------------------------------- |
| 2802 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2803 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2804 | |
| 2805 | Permission to use, copy, modify, and distribute this software for any |
| 2806 | purpose with or without fee is hereby granted, provided that the above |
| 2807 | copyright notice and this permission notice appear in all copies. |
| 2808 | |
| 2809 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2810 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2811 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2812 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2813 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2814 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2815 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2816 | |
| 2817 | ------------------------------------------------------------------- |
| 2818 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2819 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2820 | All rights reserved. |
| 2821 | |
| 2822 | Redistribution and use in source and binary forms, with or without |
| 2823 | modification, are permitted provided that the following conditions |
| 2824 | are met: |
| 2825 | 1. Redistributions of source code must retain the above copyright |
| 2826 | notice, this list of conditions and the following disclaimer. |
| 2827 | 2. Redistributions in binary form must reproduce the above copyright |
| 2828 | notice, this list of conditions and the following disclaimer in the |
| 2829 | documentation and/or other materials provided with the distribution. |
| 2830 | 3. The name of the author may not be used to endorse or promote products |
| 2831 | derived from this software without specific prior written permission. |
| 2832 | |
| 2833 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2834 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2835 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2836 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2837 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2838 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2839 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2840 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2841 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2842 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2843 | |
| 2844 | ------------------------------------------------------------------- |
| 2845 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2846 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2847 | All rights reserved. |
| 2848 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2849 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 2850 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2851 | Redistribution and use in source and binary forms, with or without |
| 2852 | modification, are permitted provided that the following conditions |
| 2853 | are met: |
| 2854 | 1. Redistributions of source code must retain the above copyright |
| 2855 | notice, this list of conditions and the following disclaimer. |
| 2856 | 2. Redistributions in binary form must reproduce the above copyright |
| 2857 | notice, this list of conditions and the following disclaimer in the |
| 2858 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2859 | 3. All advertising materials mentioning features or use of this software |
| 2860 | must display the following acknowledgement: |
| 2861 | This product includes software developed by the NetBSD |
| 2862 | Foundation, Inc. and its contributors. |
| 2863 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2864 | contributors may be used to endorse or promote products derived |
| 2865 | from this software without specific prior written permission. |
| 2866 | |
| 2867 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2868 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2869 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2870 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2871 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2872 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2873 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2874 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2875 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2876 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2877 | POSSIBILITY OF SUCH DAMAGE. |
| 2878 | |
| 2879 | ------------------------------------------------------------------- |
| 2880 | |
| 2881 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2882 | All rights reserved. |
| 2883 | |
| 2884 | This code is derived from software contributed to The NetBSD Foundation |
| 2885 | by Luke Mewburn. |
| 2886 | |
| 2887 | Redistribution and use in source and binary forms, with or without |
| 2888 | modification, are permitted provided that the following conditions |
| 2889 | are met: |
| 2890 | 1. Redistributions of source code must retain the above copyright |
| 2891 | notice, this list of conditions and the following disclaimer. |
| 2892 | 2. Redistributions in binary form must reproduce the above copyright |
| 2893 | notice, this list of conditions and the following disclaimer in the |
| 2894 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2895 | |
| 2896 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2897 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2898 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2899 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2900 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2901 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2902 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2903 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2904 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2905 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2906 | POSSIBILITY OF SUCH DAMAGE. |
| 2907 | |
| 2908 | ------------------------------------------------------------------- |
| 2909 | |
| 2910 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2911 | All rights reserved. |
| 2912 | |
| 2913 | This code is derived from software contributed to The NetBSD Foundation |
| 2914 | by Luke Mewburn; and by Jason R. Thorpe. |
| 2915 | |
| 2916 | Redistribution and use in source and binary forms, with or without |
| 2917 | modification, are permitted provided that the following conditions |
| 2918 | are met: |
| 2919 | 1. Redistributions of source code must retain the above copyright |
| 2920 | notice, this list of conditions and the following disclaimer. |
| 2921 | 2. Redistributions in binary form must reproduce the above copyright |
| 2922 | notice, this list of conditions and the following disclaimer in the |
| 2923 | documentation and/or other materials provided with the distribution. |
| 2924 | 3. All advertising materials mentioning features or use of this software |
| 2925 | must display the following acknowledgement: |
| 2926 | This product includes software developed by the NetBSD |
| 2927 | Foundation, Inc. and its contributors. |
| 2928 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2929 | contributors may be used to endorse or promote products derived |
| 2930 | from this software without specific prior written permission. |
| 2931 | |
| 2932 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2933 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2934 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2935 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2936 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2937 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2938 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2939 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2940 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2941 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2942 | POSSIBILITY OF SUCH DAMAGE. |
| 2943 | |
| 2944 | ------------------------------------------------------------------- |
| 2945 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2946 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2947 | |
| 2948 | Permission to use, copy, modify, and distribute this software for any |
| 2949 | purpose with or without fee is hereby granted, provided that the above |
| 2950 | copyright notice and this permission notice appear in all copies. |
| 2951 | |
| 2952 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2953 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2954 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2955 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2956 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2957 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2958 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2959 | |
| 2960 | ------------------------------------------------------------------- |
| 2961 | |
| 2962 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 2963 | |
| 2964 | strtok_r, from Berkeley strtok |
| 2965 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 2966 | |
| 2967 | Copyright (c) 1988, 1993 |
| 2968 | The Regents of the University of California. All rights reserved. |
| 2969 | |
| 2970 | Redistribution and use in source and binary forms, with or without |
| 2971 | modification, are permitted provided that the following conditions |
| 2972 | are met: |
| 2973 | 1. Redistributions of source code must retain the above copyright |
| 2974 | notices, this list of conditions and the following disclaimer. |
| 2975 | 2. Redistributions in binary form must reproduce the above copyright |
| 2976 | notices, this list of conditions and the following disclaimer in the |
| 2977 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 2978 | 3. Neither the name of the University nor the names of its contributors |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2979 | may be used to endorse or promote products derived from this software |
| 2980 | without specific prior written permission. |
| 2981 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2982 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 2983 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 2984 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 2985 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 2986 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2987 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 2988 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 2989 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 2990 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 2991 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 2992 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2993 | |
| 2994 | ------------------------------------------------------------------- |
| 2995 | |
| 2996 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 2997 | All rights reserved. |
| 2998 | |
| 2999 | This code is derived from software contributed to The NetBSD Foundation |
| 3000 | by Klaus Klein. |
| 3001 | |
| 3002 | Redistribution and use in source and binary forms, with or without |
| 3003 | modification, are permitted provided that the following conditions |
| 3004 | are met: |
| 3005 | 1. Redistributions of source code must retain the above copyright |
| 3006 | notice, this list of conditions and the following disclaimer. |
| 3007 | 2. Redistributions in binary form must reproduce the above copyright |
| 3008 | notice, this list of conditions and the following disclaimer in the |
| 3009 | documentation and/or other materials provided with the distribution. |
| 3010 | 3. All advertising materials mentioning features or use of this software |
| 3011 | must display the following acknowledgement: |
| 3012 | This product includes software developed by the NetBSD |
| 3013 | Foundation, Inc. and its contributors. |
| 3014 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3015 | contributors may be used to endorse or promote products derived |
| 3016 | from this software without specific prior written permission. |
| 3017 | |
| 3018 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3019 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3020 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3021 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3022 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3023 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3024 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3025 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3026 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3027 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3028 | POSSIBILITY OF SUCH DAMAGE. |
| 3029 | |
| 3030 | ------------------------------------------------------------------- |
| 3031 | |
| 3032 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3033 | |
| 3034 | Permission to use, copy, modify, and distribute this software for any |
| 3035 | purpose with or without fee is hereby granted, provided that the above |
| 3036 | copyright notice and this permission notice appear in all copies. |
| 3037 | |
| 3038 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3039 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3040 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3041 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3042 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3043 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3044 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3045 | |
| 3046 | ------------------------------------------------------------------- |
| 3047 | |
| 3048 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3049 | All rights reserved. |
| 3050 | |
| 3051 | Redistribution and use in source and binary forms, with or without |
| 3052 | modification, are permitted provided that the following conditions |
| 3053 | are met: |
| 3054 | 1. Redistributions of source code must retain the above copyright |
| 3055 | notice, this list of conditions and the following disclaimer. |
| 3056 | 2. Redistributions in binary form must reproduce the above copyright |
| 3057 | notice, this list of conditions and the following disclaimer in the |
| 3058 | documentation and/or other materials provided with the distribution. |
| 3059 | 3. The name of the author may not be used to endorse or promote products |
| 3060 | derived from this software without specific prior written permission. |
| 3061 | |
| 3062 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3063 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3064 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3065 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3066 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3067 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3068 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3069 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3070 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3071 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3072 | |
| 3073 | ------------------------------------------------------------------- |
| 3074 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3075 | Copyright (c) 1999 |
| 3076 | David E. O'Brien |
| 3077 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3078 | The Regents of the University of California. All rights reserved. |
| 3079 | |
| 3080 | Redistribution and use in source and binary forms, with or without |
| 3081 | modification, are permitted provided that the following conditions |
| 3082 | are met: |
| 3083 | 1. Redistributions of source code must retain the above copyright |
| 3084 | notice, this list of conditions and the following disclaimer. |
| 3085 | 2. Redistributions in binary form must reproduce the above copyright |
| 3086 | notice, this list of conditions and the following disclaimer in the |
| 3087 | documentation and/or other materials provided with the distribution. |
| 3088 | 3. Neither the name of the University nor the names of its contributors |
| 3089 | may be used to endorse or promote products derived from this software |
| 3090 | without specific prior written permission. |
| 3091 | |
| 3092 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3093 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3094 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3095 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3096 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3097 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3098 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3099 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3100 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3101 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3102 | SUCH DAMAGE. |
| 3103 | |
| 3104 | ------------------------------------------------------------------- |
| 3105 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3106 | Copyright (c) 1999 Kungliga Tekniska Högskolan |
| 3107 | (Royal Institute of Technology, Stockholm, Sweden). |
| 3108 | All rights reserved. |
| 3109 | |
| 3110 | Redistribution and use in source and binary forms, with or without |
| 3111 | modification, are permitted provided that the following conditions |
| 3112 | are met: |
| 3113 | |
| 3114 | 1. Redistributions of source code must retain the above copyright |
| 3115 | notice, this list of conditions and the following disclaimer. |
| 3116 | |
| 3117 | 2. Redistributions in binary form must reproduce the above copyright |
| 3118 | notice, this list of conditions and the following disclaimer in the |
| 3119 | documentation and/or other materials provided with the distribution. |
| 3120 | |
| 3121 | 3. Neither the name of KTH nor the names of its contributors may be |
| 3122 | used to endorse or promote products derived from this software without |
| 3123 | specific prior written permission. |
| 3124 | |
| 3125 | THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY |
| 3126 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3127 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3128 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE |
| 3129 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3130 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3131 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 3132 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3133 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3134 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3135 | |
| 3136 | ------------------------------------------------------------------- |
| 3137 | |
| 3138 | Copyright (c) 2000 Ben Harris. |
| 3139 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3140 | All rights reserved. |
| 3141 | |
| 3142 | Redistribution and use in source and binary forms, with or without |
| 3143 | modification, are permitted provided that the following conditions |
| 3144 | are met: |
| 3145 | 1. Redistributions of source code must retain the above copyright |
| 3146 | notice, this list of conditions and the following disclaimer. |
| 3147 | 2. Redistributions in binary form must reproduce the above copyright |
| 3148 | notice, this list of conditions and the following disclaimer in the |
| 3149 | documentation and/or other materials provided with the distribution. |
| 3150 | 3. Neither the name of the project nor the names of its contributors |
| 3151 | may be used to endorse or promote products derived from this software |
| 3152 | without specific prior written permission. |
| 3153 | |
| 3154 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3155 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3156 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3157 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3158 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3159 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3160 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3161 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3162 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3163 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3164 | SUCH DAMAGE. |
| 3165 | |
| 3166 | ------------------------------------------------------------------- |
| 3167 | |
| 3168 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3169 | All rights reserved. |
| 3170 | |
| 3171 | This code is derived from software contributed to The NetBSD Foundation |
| 3172 | by Atsushi Onoe. |
| 3173 | |
| 3174 | Redistribution and use in source and binary forms, with or without |
| 3175 | modification, are permitted provided that the following conditions |
| 3176 | are met: |
| 3177 | 1. Redistributions of source code must retain the above copyright |
| 3178 | notice, this list of conditions and the following disclaimer. |
| 3179 | 2. Redistributions in binary form must reproduce the above copyright |
| 3180 | notice, this list of conditions and the following disclaimer in the |
| 3181 | documentation and/or other materials provided with the distribution. |
| 3182 | 3. All advertising materials mentioning features or use of this software |
| 3183 | must display the following acknowledgement: |
| 3184 | This product includes software developed by the NetBSD |
| 3185 | Foundation, Inc. and its contributors. |
| 3186 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3187 | contributors may be used to endorse or promote products derived |
| 3188 | from this software without specific prior written permission. |
| 3189 | |
| 3190 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3191 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3192 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3193 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3194 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3195 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3196 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3197 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3198 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3199 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3200 | POSSIBILITY OF SUCH DAMAGE. |
| 3201 | |
| 3202 | ------------------------------------------------------------------- |
| 3203 | |
| 3204 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3205 | All rights reserved. |
| 3206 | |
| 3207 | This code is derived from software contributed to The NetBSD Foundation |
| 3208 | by Dieter Baron and Thomas Klausner. |
| 3209 | |
| 3210 | Redistribution and use in source and binary forms, with or without |
| 3211 | modification, are permitted provided that the following conditions |
| 3212 | are met: |
| 3213 | 1. Redistributions of source code must retain the above copyright |
| 3214 | notice, this list of conditions and the following disclaimer. |
| 3215 | 2. Redistributions in binary form must reproduce the above copyright |
| 3216 | notice, this list of conditions and the following disclaimer in the |
| 3217 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3218 | |
| 3219 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3220 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3221 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3222 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3223 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3224 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3225 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3226 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3227 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3228 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3229 | POSSIBILITY OF SUCH DAMAGE. |
| 3230 | |
| 3231 | ------------------------------------------------------------------- |
| 3232 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3233 | Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org> |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3234 | All rights reserved. |
| 3235 | |
| 3236 | Redistribution and use in source and binary forms, with or without |
| 3237 | modification, are permitted provided that the following conditions |
| 3238 | are met: |
| 3239 | 1. Redistributions of source code must retain the above copyright |
| 3240 | notice, this list of conditions and the following disclaimer. |
| 3241 | 2. Redistributions in binary form must reproduce the above copyright |
| 3242 | notice, this list of conditions and the following disclaimer in the |
| 3243 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3244 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3245 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3246 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3247 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3248 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3249 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3250 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3251 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3252 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3253 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3254 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3255 | SUCH DAMAGE. |
| 3256 | |
| 3257 | ------------------------------------------------------------------- |
| 3258 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3259 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3260 | All rights reserved. |
| 3261 | |
| 3262 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3263 | |
| 3264 | Redistribution and use in source and binary forms, with or without |
| 3265 | modification, are permitted provided that the following conditions |
| 3266 | are met: |
| 3267 | 1. Redistributions of source code must retain the above copyright |
| 3268 | notice, this list of conditions and the following disclaimer. |
| 3269 | 2. Redistributions in binary form must reproduce the above copyright |
| 3270 | notice, this list of conditions and the following disclaimer in the |
| 3271 | documentation and/or other materials provided with the distribution. |
| 3272 | 3. All advertising materials mentioning features or use of this software |
| 3273 | must display the following acknowledgement: |
| 3274 | This product includes software developed for the NetBSD Project by |
| 3275 | Wasabi Systems, Inc. |
| 3276 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3277 | or promote products derived from this software without specific prior |
| 3278 | written permission. |
| 3279 | |
| 3280 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3281 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3282 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3283 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3284 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3285 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3286 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3287 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3288 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3289 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3290 | POSSIBILITY OF SUCH DAMAGE. |
| 3291 | |
| 3292 | ------------------------------------------------------------------- |
| 3293 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3294 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3295 | |
| 3296 | Redistribution and use in source and binary forms, with or without |
| 3297 | modification, are permitted provided that the following conditions |
| 3298 | are met: |
| 3299 | 1. Redistributions of source code must retain the above copyright |
| 3300 | notice, this list of conditions and the following disclaimer. |
| 3301 | 2. Redistributions in binary form must reproduce the above copyright |
| 3302 | notice, this list of conditions and the following disclaimer in the |
| 3303 | documentation and/or other materials provided with the distribution. |
| 3304 | |
| 3305 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3306 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3307 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3308 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3309 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3310 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3311 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3312 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3313 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3314 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3315 | SUCH DAMAGE. |
| 3316 | |
| 3317 | ------------------------------------------------------------------- |
| 3318 | |
| 3319 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3320 | |
| 3321 | Redistribution and use in source and binary forms, with or without |
| 3322 | modification, are permitted provided that the following conditions |
| 3323 | are met: |
| 3324 | 1. Redistributions of source code must retain the above copyright |
| 3325 | notice, this list of conditions and the following disclaimer. |
| 3326 | 2. Redistributions in binary form must reproduce the above copyright |
| 3327 | notice, this list of conditions and the following disclaimer in the |
| 3328 | documentation and/or other materials provided with the distribution. |
| 3329 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3330 | may be used to endorse or promote products derived from this software |
| 3331 | without specific prior written permission. |
| 3332 | |
| 3333 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3334 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3335 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3336 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3337 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3338 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3339 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3340 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3341 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3342 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3343 | SUCH DAMAGE. |
| 3344 | |
| 3345 | ------------------------------------------------------------------- |
| 3346 | |
| 3347 | Copyright (c) 2002 Daniel Hartmeier |
| 3348 | All rights reserved. |
| 3349 | |
| 3350 | Redistribution and use in source and binary forms, with or without |
| 3351 | modification, are permitted provided that the following conditions |
| 3352 | are met: |
| 3353 | |
| 3354 | - Redistributions of source code must retain the above copyright |
| 3355 | notice, this list of conditions and the following disclaimer. |
| 3356 | - Redistributions in binary form must reproduce the above |
| 3357 | copyright notice, this list of conditions and the following |
| 3358 | disclaimer in the documentation and/or other materials provided |
| 3359 | with the distribution. |
| 3360 | |
| 3361 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3362 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3363 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3364 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3365 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3366 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3367 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3368 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3369 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3370 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3371 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3372 | POSSIBILITY OF SUCH DAMAGE. |
| 3373 | |
| 3374 | ------------------------------------------------------------------- |
| 3375 | |
| 3376 | Copyright (c) 2002 Marc Espie. |
| 3377 | |
| 3378 | Redistribution and use in source and binary forms, with or without |
| 3379 | modification, are permitted provided that the following conditions |
| 3380 | are met: |
| 3381 | 1. Redistributions of source code must retain the above copyright |
| 3382 | notice, this list of conditions and the following disclaimer. |
| 3383 | 2. Redistributions in binary form must reproduce the above copyright |
| 3384 | notice, this list of conditions and the following disclaimer in the |
| 3385 | documentation and/or other materials provided with the distribution. |
| 3386 | |
| 3387 | THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS |
| 3388 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3389 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 3390 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD |
| 3391 | PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3392 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 3393 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3394 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3395 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3396 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 3397 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3398 | |
| 3399 | ------------------------------------------------------------------- |
| 3400 | |
| 3401 | Copyright (c) 2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3402 | |
| 3403 | Redistribution and use in source and binary forms, with or without |
| 3404 | modification, are permitted provided that the following conditions |
| 3405 | are met: |
| 3406 | 1. Redistributions of source code must retain the above copyright |
| 3407 | notice, this list of conditions and the following disclaimer. |
| 3408 | 2. Redistributions in binary form must reproduce the above copyright |
| 3409 | notice, this list of conditions and the following disclaimer in the |
| 3410 | documentation and/or other materials provided with the distribution. |
| 3411 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3412 | may be used to endorse or promote products derived from this software |
| 3413 | without specific prior written permission. |
| 3414 | |
| 3415 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3416 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3417 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3418 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3419 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3420 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3421 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3422 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3423 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3424 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3425 | SUCH DAMAGE. |
| 3426 | |
| 3427 | ------------------------------------------------------------------- |
| 3428 | |
| 3429 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3430 | All rights reserved. |
| 3431 | |
| 3432 | This code is derived from software contributed to The NetBSD Foundation |
| 3433 | by Christos Zoulas. |
| 3434 | |
| 3435 | Redistribution and use in source and binary forms, with or without |
| 3436 | modification, are permitted provided that the following conditions |
| 3437 | are met: |
| 3438 | 1. Redistributions of source code must retain the above copyright |
| 3439 | notice, this list of conditions and the following disclaimer. |
| 3440 | 2. Redistributions in binary form must reproduce the above copyright |
| 3441 | notice, this list of conditions and the following disclaimer in the |
| 3442 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3443 | |
| 3444 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3445 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3446 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3447 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3448 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3449 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3450 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3451 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3452 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3453 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3454 | POSSIBILITY OF SUCH DAMAGE. |
| 3455 | |
| 3456 | ------------------------------------------------------------------- |
| 3457 | |
| 3458 | Copyright (c) 2002 Tim J. Robbins |
| 3459 | All rights reserved. |
| 3460 | |
| 3461 | Redistribution and use in source and binary forms, with or without |
| 3462 | modification, are permitted provided that the following conditions |
| 3463 | are met: |
| 3464 | 1. Redistributions of source code must retain the above copyright |
| 3465 | notice, this list of conditions and the following disclaimer. |
| 3466 | 2. Redistributions in binary form must reproduce the above copyright |
| 3467 | notice, this list of conditions and the following disclaimer in the |
| 3468 | documentation and/or other materials provided with the distribution. |
| 3469 | |
| 3470 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3471 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3472 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3473 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3474 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3475 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3476 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3477 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3478 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3479 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3480 | SUCH DAMAGE. |
| 3481 | |
| 3482 | ------------------------------------------------------------------- |
| 3483 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3484 | Copyright (c) 2002 Tim J. Robbins. |
| 3485 | All rights reserved. |
| 3486 | |
| 3487 | Redistribution and use in source and binary forms, with or without |
| 3488 | modification, are permitted provided that the following conditions |
| 3489 | are met: |
| 3490 | 1. Redistributions of source code must retain the above copyright |
| 3491 | notice, this list of conditions and the following disclaimer. |
| 3492 | 2. Redistributions in binary form must reproduce the above copyright |
| 3493 | notice, this list of conditions and the following disclaimer in the |
| 3494 | documentation and/or other materials provided with the distribution. |
| 3495 | |
| 3496 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3497 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3498 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3499 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3500 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3501 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3502 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3503 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3504 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3505 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3506 | SUCH DAMAGE. |
| 3507 | |
| 3508 | ------------------------------------------------------------------- |
| 3509 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3510 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3511 | |
| 3512 | Permission to use, copy, modify, and distribute this software for any |
| 3513 | purpose with or without fee is hereby granted, provided that the above |
| 3514 | copyright notice and this permission notice appear in all copies. |
| 3515 | |
| 3516 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3517 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3518 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3519 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3520 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3521 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3522 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3523 | |
| 3524 | Sponsored in part by the Defense Advanced Research Projects |
| 3525 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3526 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3527 | |
| 3528 | ------------------------------------------------------------------- |
| 3529 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3530 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3531 | All rights reserved. |
| 3532 | |
| 3533 | Redistribution and use in source and binary forms, with or without |
| 3534 | modification, are permitted provided that the following conditions |
| 3535 | are met: |
| 3536 | 1. Redistributions of source code must retain the above copyright |
| 3537 | notice, this list of conditions and the following disclaimer. |
| 3538 | 2. Redistributions in binary form must reproduce the above copyright |
| 3539 | notice, this list of conditions and the following disclaimer in the |
| 3540 | documentation and/or other materials provided with the distribution. |
| 3541 | |
| 3542 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3543 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3544 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3545 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3546 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3547 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3548 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3549 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3550 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3551 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3552 | SUCH DAMAGE. |
| 3553 | |
| 3554 | ------------------------------------------------------------------- |
| 3555 | |
| 3556 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3557 | All rights reserved. |
| 3558 | |
| 3559 | Redistribution and use in source and binary forms, with or without |
| 3560 | modification, are permitted provided that the following conditions |
| 3561 | are met: |
| 3562 | 1. Redistributions of source code must retain the above copyright |
| 3563 | notice, this list of conditions and the following disclaimer. |
| 3564 | 2. Redistributions in binary form must reproduce the above copyright |
| 3565 | notice, this list of conditions and the following disclaimer in the |
| 3566 | documentation and/or other materials provided with the distribution. |
| 3567 | |
| 3568 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3569 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3570 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3571 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3572 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3573 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3574 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3575 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3576 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3577 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3578 | SUCH DAMAGE. |
| 3579 | |
| 3580 | ------------------------------------------------------------------- |
| 3581 | |
| 3582 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3583 | All rights reserved. |
| 3584 | |
| 3585 | Redistribution and use in source and binary forms, with or without |
| 3586 | modification, are permitted provided that the following conditions |
| 3587 | are met: |
| 3588 | 1. Redistributions of source code must retain the above copyright |
| 3589 | notice, this list of conditions and the following disclaimer. |
| 3590 | 2. Redistributions in binary form must reproduce the above copyright |
| 3591 | notice, this list of conditions and the following disclaimer in the |
| 3592 | documentation and/or other materials provided with the distribution. |
| 3593 | |
| 3594 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3595 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3596 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3597 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3598 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3599 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3600 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3601 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3602 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3603 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3604 | SUCH DAMAGE. |
| 3605 | |
| 3606 | ------------------------------------------------------------------- |
| 3607 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3608 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3609 | |
| 3610 | Redistribution and use in source and binary forms, with or without |
| 3611 | modification, are permitted provided that the following conditions |
| 3612 | are met: |
| 3613 | 1. Redistributions of source code must retain the above copyright |
| 3614 | notice, this list of conditions and the following disclaimer. |
| 3615 | 2. Redistributions in binary form must reproduce the above copyright |
| 3616 | notice, this list of conditions and the following disclaimer in the |
| 3617 | documentation and/or other materials provided with the distribution. |
| 3618 | 3. The names of the authors may not be used to endorse or promote |
| 3619 | products derived from this software without specific prior written |
| 3620 | permission. |
| 3621 | |
| 3622 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3623 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3624 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3625 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3626 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3627 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3628 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3629 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3630 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3631 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3632 | SUCH DAMAGE. |
| 3633 | |
| 3634 | ------------------------------------------------------------------- |
| 3635 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3636 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3637 | All rights reserved. |
| 3638 | |
| 3639 | Redistribution and use in source and binary forms, with or without |
| 3640 | modification, are permitted provided that the following conditions |
| 3641 | are met: |
| 3642 | 1. Redistributions of source code must retain the above copyright |
| 3643 | notice, this list of conditions and the following disclaimer. |
| 3644 | 2. Redistributions in binary form must reproduce the above copyright |
| 3645 | notice, this list of conditions and the following disclaimer in the |
| 3646 | documentation and/or other materials provided with the distribution. |
| 3647 | |
| 3648 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3649 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3650 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3651 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3652 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3653 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3654 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3655 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3656 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3657 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3658 | SUCH DAMAGE. |
| 3659 | |
| 3660 | ------------------------------------------------------------------- |
| 3661 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3662 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3663 | All rights reserved. |
| 3664 | |
| 3665 | Portions of this software were developed for the FreeBSD Project by |
| 3666 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3667 | Associates Laboratories, the Security Research Division of Network |
| 3668 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3669 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3670 | |
| 3671 | Redistribution and use in source and binary forms, with or without |
| 3672 | modification, are permitted provided that the following conditions |
| 3673 | are met: |
| 3674 | 1. Redistributions of source code must retain the above copyright |
| 3675 | notice, this list of conditions and the following disclaimer. |
| 3676 | 2. Redistributions in binary form must reproduce the above copyright |
| 3677 | notice, this list of conditions and the following disclaimer in the |
| 3678 | documentation and/or other materials provided with the distribution. |
| 3679 | |
| 3680 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3681 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3682 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3683 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3684 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3685 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3686 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3687 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3688 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3689 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3690 | SUCH DAMAGE. |
| 3691 | |
| 3692 | ------------------------------------------------------------------- |
| 3693 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3694 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3695 | |
| 3696 | Permission to use, copy, modify, and distribute this software for any |
| 3697 | purpose with or without fee is hereby granted, provided that the above |
| 3698 | copyright notice and this permission notice appear in all copies. |
| 3699 | |
| 3700 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3701 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3702 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3703 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3704 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3705 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3706 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3707 | |
| 3708 | Sponsored in part by the Defense Advanced Research Projects |
| 3709 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3710 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3711 | |
| 3712 | ------------------------------------------------------------------- |
| 3713 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3714 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3715 | All rights reserved. |
| 3716 | |
| 3717 | This code is derived from software contributed to The NetBSD Foundation |
| 3718 | by Christos Zoulas. |
| 3719 | |
| 3720 | Redistribution and use in source and binary forms, with or without |
| 3721 | modification, are permitted provided that the following conditions |
| 3722 | are met: |
| 3723 | 1. Redistributions of source code must retain the above copyright |
| 3724 | notice, this list of conditions and the following disclaimer. |
| 3725 | 2. Redistributions in binary form must reproduce the above copyright |
| 3726 | notice, this list of conditions and the following disclaimer in the |
| 3727 | documentation and/or other materials provided with the distribution. |
| 3728 | 3. All advertising materials mentioning features or use of this software |
| 3729 | must display the following acknowledgement: |
| 3730 | This product includes software developed by the NetBSD |
| 3731 | Foundation, Inc. and its contributors. |
| 3732 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3733 | contributors may be used to endorse or promote products derived |
| 3734 | from this software without specific prior written permission. |
| 3735 | |
| 3736 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3737 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3738 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3739 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3740 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3741 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3742 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3743 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3744 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3745 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3746 | POSSIBILITY OF SUCH DAMAGE. |
| 3747 | |
| 3748 | ------------------------------------------------------------------- |
| 3749 | |
| 3750 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3751 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3752 | |
| 3753 | Permission to use, copy, modify, and distribute this software for any |
| 3754 | purpose with or without fee is hereby granted, provided that the above |
| 3755 | copyright notice and this permission notice appear in all copies. |
| 3756 | |
| 3757 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3758 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3759 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3760 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3761 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3762 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3763 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3764 | |
| 3765 | ------------------------------------------------------------------- |
| 3766 | |
| 3767 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3768 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3769 | |
| 3770 | Permission to use, copy, modify, and distribute this software for any |
| 3771 | purpose with or without fee is hereby granted, provided that the above |
| 3772 | copyright notice and this permission notice appear in all copies. |
| 3773 | |
| 3774 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3775 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3776 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3777 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3778 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3779 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3780 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3781 | |
| 3782 | ------------------------------------------------------------------- |
| 3783 | |
| 3784 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3785 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 3786 | |
| 3787 | Permission to use, copy, modify, and distribute this software for any |
| 3788 | purpose with or without fee is hereby granted, provided that the above |
| 3789 | copyright notice and this permission notice appear in all copies. |
| 3790 | |
| 3791 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3792 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3793 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3794 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3795 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3796 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3797 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3798 | |
| 3799 | ------------------------------------------------------------------- |
| 3800 | |
| 3801 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3802 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 3803 | |
| 3804 | Permission to use, copy, modify, and distribute this software for any |
| 3805 | purpose with or without fee is hereby granted, provided that the above |
| 3806 | copyright notice and this permission notice appear in all copies. |
| 3807 | |
| 3808 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3809 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3810 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3811 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3812 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3813 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3814 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3815 | |
| 3816 | ------------------------------------------------------------------- |
| 3817 | |
| 3818 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3819 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 3820 | |
| 3821 | Permission to use, copy, modify, and distribute this software for any |
| 3822 | purpose with or without fee is hereby granted, provided that the above |
| 3823 | copyright notice and this permission notice appear in all copies. |
| 3824 | |
| 3825 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3826 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3827 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3828 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3829 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3830 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3831 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3832 | |
| 3833 | ------------------------------------------------------------------- |
| 3834 | |
| 3835 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3836 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3837 | |
| 3838 | Permission to use, copy, modify, and distribute this software for any |
| 3839 | purpose with or without fee is hereby granted, provided that the above |
| 3840 | copyright notice and this permission notice appear in all copies. |
| 3841 | |
| 3842 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3843 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3844 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3845 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3846 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3847 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3848 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3849 | |
| 3850 | ------------------------------------------------------------------- |
| 3851 | |
| 3852 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3853 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 3854 | |
| 3855 | Permission to use, copy, modify, and distribute this software for any |
| 3856 | purpose with or without fee is hereby granted, provided that the above |
| 3857 | copyright notice and this permission notice appear in all copies. |
| 3858 | |
| 3859 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3860 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3861 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3862 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3863 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3864 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3865 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3866 | |
| 3867 | ------------------------------------------------------------------- |
| 3868 | |
| 3869 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3870 | Copyright (c) 1999 by Internet Software Consortium. |
| 3871 | |
| 3872 | Permission to use, copy, modify, and distribute this software for any |
| 3873 | purpose with or without fee is hereby granted, provided that the above |
| 3874 | copyright notice and this permission notice appear in all copies. |
| 3875 | |
| 3876 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3877 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3878 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3879 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3880 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3881 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3882 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3883 | |
| 3884 | ------------------------------------------------------------------- |
| 3885 | |
| 3886 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3887 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3888 | |
| 3889 | Permission to use, copy, modify, and distribute this software for any |
| 3890 | purpose with or without fee is hereby granted, provided that the above |
| 3891 | copyright notice and this permission notice appear in all copies. |
| 3892 | |
| 3893 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3894 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3895 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3896 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3897 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3898 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3899 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3900 | |
| 3901 | ------------------------------------------------------------------- |
| 3902 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3903 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 3904 | All rights reserved. |
| 3905 | |
| 3906 | Redistribution and use in source and binary forms, with or without |
| 3907 | modification, are permitted provided that the following conditions |
| 3908 | are met: |
| 3909 | 1. Redistributions of source code must retain the above copyright |
| 3910 | notice, this list of conditions and the following disclaimer. |
| 3911 | 2. Redistributions in binary form must reproduce the above copyright |
| 3912 | notice, this list of conditions and the following disclaimer in the |
| 3913 | documentation and/or other materials provided with the distribution. |
| 3914 | |
| 3915 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3916 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3917 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3918 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3919 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3920 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3921 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3922 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3923 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3924 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3925 | SUCH DAMAGE. |
| 3926 | |
| 3927 | ------------------------------------------------------------------- |
| 3928 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3929 | Copyright (c) 2005 Tim J. Robbins. |
| 3930 | All rights reserved. |
| 3931 | |
| 3932 | Redistribution and use in source and binary forms, with or without |
| 3933 | modification, are permitted provided that the following conditions |
| 3934 | are met: |
| 3935 | 1. Redistributions of source code must retain the above copyright |
| 3936 | notice, this list of conditions and the following disclaimer. |
| 3937 | 2. Redistributions in binary form must reproduce the above copyright |
| 3938 | notice, this list of conditions and the following disclaimer in the |
| 3939 | documentation and/or other materials provided with the distribution. |
| 3940 | |
| 3941 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3942 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3943 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3944 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3945 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3946 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3947 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3948 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3949 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3950 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3951 | SUCH DAMAGE. |
| 3952 | |
| 3953 | ------------------------------------------------------------------- |
| 3954 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 3955 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 3956 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3957 | |
| 3958 | Permission to use, copy, modify, and distribute this software for any |
| 3959 | purpose with or without fee is hereby granted, provided that the above |
| 3960 | copyright notice and this permission notice appear in all copies. |
| 3961 | |
| 3962 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3963 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3964 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3965 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3966 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3967 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3968 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3969 | |
| 3970 | ------------------------------------------------------------------- |
| 3971 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3972 | Copyright (c) 2007-2008 Michael G Schwern |
| 3973 | |
| 3974 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 3975 | |
| 3976 | The MIT License: |
| 3977 | |
| 3978 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3979 | of this software and associated documentation files (the "Software"), to deal |
| 3980 | in the Software without restriction, including without limitation the rights |
| 3981 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3982 | copies of the Software, and to permit persons to whom the Software is |
| 3983 | furnished to do so, subject to the following conditions: |
| 3984 | |
| 3985 | The above copyright notice and this permission notice shall be included in |
| 3986 | all copies or substantial portions of the Software. |
| 3987 | |
| 3988 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3989 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3990 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3991 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3992 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3993 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3994 | THE SOFTWARE. |
| 3995 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3996 | ------------------------------------------------------------------- |
| 3997 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3998 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3999 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4000 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4001 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4002 | The MIT License: |
| 4003 | |
| 4004 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4005 | of this software and associated documentation files (the "Software"), to deal |
| 4006 | in the Software without restriction, including without limitation the rights |
| 4007 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4008 | copies of the Software, and to permit persons to whom the Software is |
| 4009 | furnished to do so, subject to the following conditions: |
| 4010 | |
| 4011 | The above copyright notice and this permission notice shall be included in |
| 4012 | all copies or substantial portions of the Software. |
| 4013 | |
| 4014 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4015 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4016 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4017 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4018 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4019 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4020 | THE SOFTWARE. |
| 4021 | |
| 4022 | Origin: http://code.google.com/p/y2038 |
| 4023 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4024 | |
| 4025 | ------------------------------------------------------------------- |
| 4026 | |
| 4027 | Copyright (c) 2008 Android Open Source Project (query id randomization) |
| 4028 | Copyright (c) 1985, 1993 |
| 4029 | The Regents of the University of California. All rights reserved. |
| 4030 | |
| 4031 | Redistribution and use in source and binary forms, with or without |
| 4032 | modification, are permitted provided that the following conditions |
| 4033 | are met: |
| 4034 | 1. Redistributions of source code must retain the above copyright |
| 4035 | notice, this list of conditions and the following disclaimer. |
| 4036 | 2. Redistributions in binary form must reproduce the above copyright |
| 4037 | notice, this list of conditions and the following disclaimer in the |
| 4038 | documentation and/or other materials provided with the distribution. |
| 4039 | 3. All advertising materials mentioning features or use of this software |
| 4040 | must display the following acknowledgement: |
| 4041 | This product includes software developed by the University of |
| 4042 | California, Berkeley and its contributors. |
| 4043 | 4. Neither the name of the University nor the names of its contributors |
| 4044 | may be used to endorse or promote products derived from this software |
| 4045 | without specific prior written permission. |
| 4046 | |
| 4047 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 4048 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4049 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4050 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4051 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4052 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4053 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4054 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4055 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4056 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4057 | SUCH DAMAGE. |
| 4058 | |
| 4059 | ------------------------------------------------------------------- |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 4060 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4061 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4062 | |
| 4063 | Permission to use, copy, modify, and distribute this software for any |
| 4064 | purpose with or without fee is hereby granted, provided that the above |
| 4065 | copyright notice and this permission notice appear in all copies. |
| 4066 | |
| 4067 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4068 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4069 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4070 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4071 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4072 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4073 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4074 | |
| 4075 | ------------------------------------------------------------------- |
| 4076 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4077 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4078 | |
| 4079 | Permission to use, copy, modify, and distribute this software for any |
| 4080 | purpose with or without fee is hereby granted, provided that the above |
| 4081 | copyright notice and this permission notice appear in all copies. |
| 4082 | |
| 4083 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4084 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4085 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4086 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4087 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4088 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4089 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4090 | |
| 4091 | ------------------------------------------------------------------- |
| 4092 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4093 | Copyright (c) 2009 |
| 4094 | MIPS Technologies, Inc., California. |
| 4095 | |
| 4096 | Redistribution and use in source and binary forms, with or without |
| 4097 | modification, are permitted provided that the following conditions |
| 4098 | are met: |
| 4099 | 1. Redistributions of source code must retain the above copyright |
| 4100 | notice, this list of conditions and the following disclaimer. |
| 4101 | 2. Redistributions in binary form must reproduce the above copyright |
| 4102 | notice, this list of conditions and the following disclaimer in the |
| 4103 | documentation and/or other materials provided with the distribution. |
| 4104 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4105 | contributors may be used to endorse or promote products derived from |
| 4106 | this software without specific prior written permission. |
| 4107 | |
| 4108 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4109 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4110 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4111 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4112 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4113 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4114 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4115 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4116 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4117 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4118 | SUCH DAMAGE. |
| 4119 | |
| 4120 | ------------------------------------------------------------------- |
| 4121 | |
| 4122 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4123 | All rights reserved. |
| 4124 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4125 | Copyright (c) 2011 The FreeBSD Foundation |
| 4126 | All rights reserved. |
| 4127 | Portions of this software were developed by David Chisnall |
| 4128 | under sponsorship from the FreeBSD Foundation. |
| 4129 | |
| 4130 | Redistribution and use in source and binary forms, with or without |
| 4131 | modification, are permitted provided that the following conditions |
| 4132 | are met: |
| 4133 | 1. Redistributions of source code must retain the above copyright |
| 4134 | notice, this list of conditions and the following disclaimer. |
| 4135 | 2. Redistributions in binary form must reproduce the above copyright |
| 4136 | notice, this list of conditions and the following disclaimer in the |
| 4137 | documentation and/or other materials provided with the distribution. |
| 4138 | |
| 4139 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4140 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4141 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4142 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4143 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4144 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4145 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4146 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4147 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4148 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4149 | SUCH DAMAGE. |
| 4150 | |
| 4151 | ------------------------------------------------------------------- |
| 4152 | |
| 4153 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4154 | All rights reserved. |
| 4155 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4156 | Redistribution and use in source and binary forms, with or without |
| 4157 | modification, are permitted provided that the following conditions |
| 4158 | are met: |
| 4159 | 1. Redistributions of source code must retain the above copyright |
| 4160 | notice, this list of conditions and the following disclaimer. |
| 4161 | 2. Redistributions in binary form must reproduce the above copyright |
| 4162 | notice, this list of conditions and the following disclaimer in the |
| 4163 | documentation and/or other materials provided with the distribution. |
| 4164 | |
| 4165 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4166 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4167 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4168 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4169 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4170 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4171 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4172 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4173 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4174 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4175 | SUCH DAMAGE. |
| 4176 | |
| 4177 | ------------------------------------------------------------------- |
| 4178 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4179 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4180 | |
| 4181 | This code is derived from software contributed to The NetBSD Foundation |
| 4182 | by Roy Marples. |
| 4183 | |
| 4184 | Redistribution and use in source and binary forms, with or without |
| 4185 | modification, are permitted provided that the following conditions |
| 4186 | are met: |
| 4187 | 1. Redistributions of source code must retain the above copyright |
| 4188 | notice, this list of conditions and the following disclaimer. |
| 4189 | 2. Redistributions in binary form must reproduce the above copyright |
| 4190 | notice, this list of conditions and the following disclaimer in the |
| 4191 | documentation and/or other materials provided with the distribution. |
| 4192 | |
| 4193 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4194 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4195 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4196 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4197 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4198 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4199 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4200 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4201 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4202 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4203 | |
| 4204 | ------------------------------------------------------------------- |
| 4205 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4206 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 4207 | |
| 4208 | All rights reserved. |
| 4209 | |
| 4210 | Redistribution and use in source and binary forms, with or without |
| 4211 | modification, are permitted provided that the following conditions |
| 4212 | are met: |
| 4213 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4214 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4215 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4216 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4217 | notice, this list of conditions and the following disclaimer |
| 4218 | in the documentation and/or other materials provided with |
| 4219 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4220 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4221 | contributors may be used to endorse or promote products derived |
| 4222 | from this software without specific prior written permission. |
| 4223 | |
| 4224 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4225 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4226 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4227 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4228 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4229 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4230 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4231 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4232 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4233 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4234 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4235 | |
| 4236 | ------------------------------------------------------------------- |
| 4237 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4238 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4239 | |
| 4240 | Permission to use, copy, modify, and distribute this software for any |
| 4241 | purpose with or without fee is hereby granted, provided that the above |
| 4242 | copyright notice and this permission notice appear in all copies. |
| 4243 | |
| 4244 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4245 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4246 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4247 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4248 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4249 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4250 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4251 | |
| 4252 | ------------------------------------------------------------------- |
| 4253 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4254 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4255 | All rights reserved. |
| 4256 | |
| 4257 | Redistribution and use in source and binary forms, with or without |
| 4258 | modification, are permitted provided that the following conditions are met: |
| 4259 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4260 | * Redistributions of source code must retain the above copyright notice, |
| 4261 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4262 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4263 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4264 | * this list of conditions and the following disclaimer in the documentation |
| 4265 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4266 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4267 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4268 | * may be used to endorse or promote products derived from this software |
| 4269 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4270 | |
| 4271 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4272 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4273 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4274 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4275 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4276 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4277 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4278 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4279 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4280 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4281 | |
| 4282 | ------------------------------------------------------------------- |
| 4283 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4284 | Copyright (c) 2010, Intel Corporation |
| 4285 | All rights reserved. |
| 4286 | |
| 4287 | Redistribution and use in source and binary forms, with or without |
| 4288 | modification, are permitted provided that the following conditions are met: |
| 4289 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4290 | * Redistributions of source code must retain the above copyright notice, |
| 4291 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4292 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4293 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4294 | * this list of conditions and the following disclaimer in the documentation |
| 4295 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4296 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4297 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4298 | * may be used to endorse or promote products derived from this software |
| 4299 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4300 | |
| 4301 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4302 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4303 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4304 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4305 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4306 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4307 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4308 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4309 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4310 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4311 | |
| 4312 | ------------------------------------------------------------------- |
| 4313 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4314 | Copyright (c) 2011 David Chisnall |
| 4315 | All rights reserved. |
| 4316 | |
| 4317 | Redistribution and use in source and binary forms, with or without |
| 4318 | modification, are permitted provided that the following conditions |
| 4319 | are met: |
| 4320 | 1. Redistributions of source code must retain the above copyright |
| 4321 | notice, this list of conditions and the following disclaimer. |
| 4322 | 2. Redistributions in binary form must reproduce the above copyright |
| 4323 | notice, this list of conditions and the following disclaimer in the |
| 4324 | documentation and/or other materials provided with the distribution. |
| 4325 | |
| 4326 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4327 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4328 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4329 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4330 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4331 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4332 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4333 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4334 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4335 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4336 | SUCH DAMAGE. |
| 4337 | |
| 4338 | ------------------------------------------------------------------- |
| 4339 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4340 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 4341 | David Chisnall <theraven@FreeBSD.org> |
| 4342 | All rights reserved. |
| 4343 | |
| 4344 | Redistribution and use in source and binary forms, with or without |
| 4345 | modification, are permitted provided that the following conditions |
| 4346 | are met: |
| 4347 | 1. Redistributions of source code must retain the above copyright |
| 4348 | notice, this list of conditions and the following disclaimer. |
| 4349 | 2. Redistributions in binary form must reproduce the above copyright |
| 4350 | notice, this list of conditions and the following disclaimer in the |
| 4351 | documentation and/or other materials provided with the distribution. |
| 4352 | |
| 4353 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4354 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4355 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4356 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4357 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4358 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4359 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4360 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4361 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4362 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4363 | SUCH DAMAGE. |
| 4364 | |
| 4365 | ------------------------------------------------------------------- |
| 4366 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4367 | Copyright (c) 2011 Intel Corporation |
| 4368 | All rights reserved. |
| 4369 | |
| 4370 | Redistribution and use in source and binary forms, with or without |
| 4371 | modification, are permitted provided that the following conditions are met: |
| 4372 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4373 | * Redistributions of source code must retain the above copyright notice, |
| 4374 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4375 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4376 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4377 | * this list of conditions and the following disclaimer in the documentation |
| 4378 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4379 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4380 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4381 | * may be used to endorse or promote products derived from this software |
| 4382 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4383 | |
| 4384 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4385 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4386 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4387 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4388 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4389 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4390 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4391 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4392 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4393 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4394 | |
| 4395 | ------------------------------------------------------------------- |
| 4396 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4397 | Copyright (c) 2011 The Android Open Source Project |
| 4398 | Copyright (c) 2008 ARM Ltd |
| 4399 | All rights reserved. |
| 4400 | |
| 4401 | Redistribution and use in source and binary forms, with or without |
| 4402 | modification, are permitted provided that the following conditions |
| 4403 | are met: |
| 4404 | 1. Redistributions of source code must retain the above copyright |
| 4405 | notice, this list of conditions and the following disclaimer. |
| 4406 | 2. Redistributions in binary form must reproduce the above copyright |
| 4407 | notice, this list of conditions and the following disclaimer in the |
| 4408 | documentation and/or other materials provided with the distribution. |
| 4409 | 3. The name of the company may not be used to endorse or promote |
| 4410 | products derived from this software without specific prior written |
| 4411 | permission. |
| 4412 | |
| 4413 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4414 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4415 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4416 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4417 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4418 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4419 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4420 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4421 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4422 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4423 | |
| 4424 | ------------------------------------------------------------------- |
| 4425 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4426 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 4427 | All rights reserved. |
| 4428 | |
| 4429 | Redistribution and use in source and binary forms, with or without |
| 4430 | modification, are permitted provided that the following conditions are met: |
| 4431 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4432 | * Redistributions of source code must retain the above copyright notice, |
| 4433 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4434 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4435 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4436 | * this list of conditions and the following disclaimer in the documentation |
| 4437 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4438 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4439 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4440 | * may be used to endorse or promote products derived from this software |
| 4441 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4442 | |
| 4443 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4444 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4445 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4446 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4447 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4448 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4449 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4450 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4451 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4452 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4453 | |
| 4454 | ------------------------------------------------------------------- |
| 4455 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4456 | Copyright (c) 2011, Intel Corporation |
| 4457 | All rights reserved. |
| 4458 | |
| 4459 | Redistribution and use in source and binary forms, with or without |
| 4460 | modification, are permitted provided that the following conditions are met: |
| 4461 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4462 | * Redistributions of source code must retain the above copyright notice, |
| 4463 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4464 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4465 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4466 | * this list of conditions and the following disclaimer in the documentation |
| 4467 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4468 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4469 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4470 | * may be used to endorse or promote products derived from this software |
| 4471 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4472 | |
| 4473 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4474 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4475 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4476 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4477 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4478 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4479 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4480 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4481 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4482 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4483 | |
| 4484 | ------------------------------------------------------------------- |
| 4485 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4486 | Copyright (c) 2011, VMware, Inc. |
| 4487 | All rights reserved. |
| 4488 | |
| 4489 | Redistribution and use in source and binary forms, with or without |
| 4490 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4491 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4492 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4493 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4494 | notice, this list of conditions and the following disclaimer in the |
| 4495 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4496 | * Neither the name of the VMware, Inc. nor the names of its contributors |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4497 | may be used to endorse or promote products derived from this software |
| 4498 | without specific prior written permission. |
| 4499 | |
| 4500 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 4501 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4502 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4503 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 4504 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4505 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4506 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 4507 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4508 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4509 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4510 | |
| 4511 | ------------------------------------------------------------------- |
| 4512 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4513 | Copyright (c) 2012, Linaro Limited |
| 4514 | All rights reserved. |
| 4515 | |
| 4516 | Redistribution and use in source and binary forms, with or without |
| 4517 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4518 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4519 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4520 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4521 | notice, this list of conditions and the following disclaimer in the |
| 4522 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4523 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4524 | names of its contributors may be used to endorse or promote products |
| 4525 | derived from this software without specific prior written permission. |
| 4526 | |
| 4527 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4528 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4529 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4530 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4531 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4532 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4533 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4534 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4535 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4536 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4537 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4538 | |
| 4539 | ------------------------------------------------------------------- |
| 4540 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4541 | Copyright (c) 2012, Linaro Limited |
| 4542 | All rights reserved. |
| 4543 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 4544 | |
| 4545 | Redistribution and use in source and binary forms, with or without |
| 4546 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4547 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4548 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4549 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4550 | notice, this list of conditions and the following disclaimer in the |
| 4551 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4552 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4553 | names of its contributors may be used to endorse or promote products |
| 4554 | derived from this software without specific prior written permission. |
| 4555 | |
| 4556 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4557 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4558 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4559 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4560 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4561 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4562 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4563 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4564 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4565 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4566 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4567 | |
| 4568 | ------------------------------------------------------------------- |
| 4569 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 4570 | Copyright (c) 2013 ARM Ltd |
| 4571 | All rights reserved. |
| 4572 | |
| 4573 | Redistribution and use in source and binary forms, with or without |
| 4574 | modification, are permitted provided that the following conditions |
| 4575 | are met: |
| 4576 | 1. Redistributions of source code must retain the above copyright |
| 4577 | notice, this list of conditions and the following disclaimer. |
| 4578 | 2. Redistributions in binary form must reproduce the above copyright |
| 4579 | notice, this list of conditions and the following disclaimer in the |
| 4580 | documentation and/or other materials provided with the distribution. |
| 4581 | 3. The name of the company may not be used to endorse or promote |
| 4582 | products derived from this software without specific prior written |
| 4583 | permission. |
| 4584 | |
| 4585 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4586 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4587 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4588 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4589 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4590 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4591 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4592 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4593 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4594 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4595 | |
| 4596 | ------------------------------------------------------------------- |
| 4597 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4598 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 4599 | |
| 4600 | Permission to use, copy, modify, and distribute this software for any |
| 4601 | purpose with or without fee is hereby granted, provided that the above |
| 4602 | copyright notice and this permission notice appear in all copies. |
| 4603 | |
| 4604 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4605 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4606 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4607 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4608 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4609 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4610 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4611 | |
| 4612 | ------------------------------------------------------------------- |
| 4613 | |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4614 | Copyright (c) 2013, Linaro Limited |
| 4615 | All rights reserved. |
| 4616 | |
| 4617 | Redistribution and use in source and binary forms, with or without |
| 4618 | modification, are permitted provided that the following conditions |
| 4619 | are met: |
| 4620 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4621 | * Redistributions of source code must retain the above copyright |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4622 | notice, this list of conditions and the following disclaimer. |
| 4623 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4624 | * Redistributions in binary form must reproduce the above copyright |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4625 | notice, this list of conditions and the following disclaimer in the |
| 4626 | documentation and/or other materials provided with the distribution. |
| 4627 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4628 | * Neither the name of Linaro Limited nor the names of its |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4629 | contributors may be used to endorse or promote products derived |
| 4630 | from this software without specific prior written permission. |
| 4631 | |
| 4632 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4633 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4634 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4635 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4636 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4637 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4638 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4639 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4640 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4641 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4642 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4643 | |
| 4644 | ------------------------------------------------------------------- |
| 4645 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4646 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 4647 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 4648 | |
| 4649 | Permission to use, copy, modify, and distribute this software for any |
| 4650 | purpose with or without fee is hereby granted, provided that the above |
| 4651 | copyright notice and this permission notice appear in all copies. |
| 4652 | |
| 4653 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4654 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4655 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4656 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4657 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4658 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4659 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4660 | |
| 4661 | Emulation of getentropy(2) as documented at: |
| 4662 | http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2 |
| 4663 | |
| 4664 | ------------------------------------------------------------------- |
| 4665 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4666 | Copyright (c) 2014, Intel Corporation |
| 4667 | All rights reserved. |
| 4668 | |
| 4669 | Redistribution and use in source and binary forms, with or without |
| 4670 | modification, are permitted provided that the following conditions are met: |
| 4671 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4672 | * Redistributions of source code must retain the above copyright notice, |
| 4673 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4674 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4675 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4676 | * this list of conditions and the following disclaimer in the documentation |
| 4677 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4678 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4679 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4680 | * may be used to endorse or promote products derived from this software |
| 4681 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4682 | |
| 4683 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4684 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4685 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4686 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4687 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4688 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4689 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4690 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4691 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4692 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4693 | |
| 4694 | ------------------------------------------------------------------- |
| 4695 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4696 | Copyright (c) 2014, Linaro Limited |
| 4697 | All rights reserved. |
| 4698 | |
| 4699 | Redistribution and use in source and binary forms, with or without |
| 4700 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4701 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4702 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4703 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4704 | notice, this list of conditions and the following disclaimer in the |
| 4705 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 4706 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4707 | names of its contributors may be used to endorse or promote products |
| 4708 | derived from this software without specific prior written permission. |
| 4709 | |
| 4710 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4711 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4712 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4713 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4714 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4715 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4716 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4717 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4718 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4719 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4720 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4721 | |
| 4722 | ------------------------------------------------------------------- |
| 4723 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4724 | Copyright (c)1999 Citrus Project, |
| 4725 | All rights reserved. |
| 4726 | |
| 4727 | Redistribution and use in source and binary forms, with or without |
| 4728 | modification, are permitted provided that the following conditions |
| 4729 | are met: |
| 4730 | 1. Redistributions of source code must retain the above copyright |
| 4731 | notice, this list of conditions and the following disclaimer. |
| 4732 | 2. Redistributions in binary form must reproduce the above copyright |
| 4733 | notice, this list of conditions and the following disclaimer in the |
| 4734 | documentation and/or other materials provided with the distribution. |
| 4735 | |
| 4736 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4737 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4738 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4739 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4740 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4741 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4742 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4743 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4744 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4745 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4746 | SUCH DAMAGE. |
| 4747 | |
| 4748 | ------------------------------------------------------------------- |
| 4749 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4750 | Copyright (c)1999, 2000, 2001 Citrus Project, |
| 4751 | All rights reserved. |
| 4752 | |
| 4753 | Redistribution and use in source and binary forms, with or without |
| 4754 | modification, are permitted provided that the following conditions |
| 4755 | are met: |
| 4756 | 1. Redistributions of source code must retain the above copyright |
| 4757 | notice, this list of conditions and the following disclaimer. |
| 4758 | 2. Redistributions in binary form must reproduce the above copyright |
| 4759 | notice, this list of conditions and the following disclaimer in the |
| 4760 | documentation and/or other materials provided with the distribution. |
| 4761 | |
| 4762 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4763 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4764 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4765 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4766 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4767 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4768 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4769 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4770 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4771 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4772 | SUCH DAMAGE. |
| 4773 | |
| 4774 | ------------------------------------------------------------------- |
| 4775 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4776 | Copyright (c)2001 Citrus Project, |
| 4777 | All rights reserved. |
| 4778 | |
| 4779 | Redistribution and use in source and binary forms, with or without |
| 4780 | modification, are permitted provided that the following conditions |
| 4781 | are met: |
| 4782 | 1. Redistributions of source code must retain the above copyright |
| 4783 | notice, this list of conditions and the following disclaimer. |
| 4784 | 2. Redistributions in binary form must reproduce the above copyright |
| 4785 | notice, this list of conditions and the following disclaimer in the |
| 4786 | documentation and/or other materials provided with the distribution. |
| 4787 | |
| 4788 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4789 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4790 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4791 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4792 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4793 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4794 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4795 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4796 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4797 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4798 | SUCH DAMAGE. |
| 4799 | |
| 4800 | ------------------------------------------------------------------- |
| 4801 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4802 | Copyright (c)2003 Citrus Project, |
| 4803 | All rights reserved. |
| 4804 | |
| 4805 | Redistribution and use in source and binary forms, with or without |
| 4806 | modification, are permitted provided that the following conditions |
| 4807 | are met: |
| 4808 | 1. Redistributions of source code must retain the above copyright |
| 4809 | notice, this list of conditions and the following disclaimer. |
| 4810 | 2. Redistributions in binary form must reproduce the above copyright |
| 4811 | notice, this list of conditions and the following disclaimer in the |
| 4812 | documentation and/or other materials provided with the distribution. |
| 4813 | |
| 4814 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4815 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4816 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4817 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4818 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4819 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4820 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4821 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4822 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4823 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4824 | SUCH DAMAGE. |
| 4825 | |
| 4826 | ------------------------------------------------------------------- |
| 4827 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4828 | Copyright 2000 David E. O'Brien, John D. Polstra. |
| 4829 | All rights reserved. |
| 4830 | |
| 4831 | Redistribution and use in source and binary forms, with or without |
| 4832 | modification, are permitted provided that the following conditions |
| 4833 | are met: |
| 4834 | 1. Redistributions of source code must retain the above copyright |
| 4835 | notice, this list of conditions and the following disclaimer. |
| 4836 | 2. Redistributions in binary form must reproduce the above copyright |
| 4837 | notice, this list of conditions and the following disclaimer in the |
| 4838 | documentation and/or other materials provided with the distribution. |
| 4839 | |
| 4840 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4841 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4842 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4843 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4844 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4845 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4846 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4847 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4848 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4849 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4850 | |
| 4851 | ------------------------------------------------------------------- |
| 4852 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4853 | Copyright 2008 Android Open Source Project (source port randomization) |
| 4854 | Copyright (c) 1985, 1989, 1993 |
| 4855 | The Regents of the University of California. All rights reserved. |
| 4856 | |
| 4857 | Redistribution and use in source and binary forms, with or without |
| 4858 | modification, are permitted provided that the following conditions |
| 4859 | are met: |
| 4860 | 1. Redistributions of source code must retain the above copyright |
| 4861 | notice, this list of conditions and the following disclaimer. |
| 4862 | 2. Redistributions in binary form must reproduce the above copyright |
| 4863 | notice, this list of conditions and the following disclaimer in the |
| 4864 | documentation and/or other materials provided with the distribution. |
| 4865 | 3. All advertising materials mentioning features or use of this software |
| 4866 | must display the following acknowledgement: |
| 4867 | This product includes software developed by the University of |
| 4868 | California, Berkeley and its contributors. |
| 4869 | 4. Neither the name of the University nor the names of its contributors |
| 4870 | may be used to endorse or promote products derived from this software |
| 4871 | without specific prior written permission. |
| 4872 | |
| 4873 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 4874 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4875 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4876 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4877 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4878 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4879 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4880 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4881 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4882 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4883 | SUCH DAMAGE. |
| 4884 | |
| 4885 | ------------------------------------------------------------------- |
| 4886 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 4887 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 4888 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 4889 | |
| 4890 | Permission to use, copy, modify, and/or distribute this software for any |
| 4891 | purpose with or without fee is hereby granted, provided that the above |
| 4892 | copyright notice and this permission notice appear in all copies. |
| 4893 | |
| 4894 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 4895 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 4896 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 4897 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 4898 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 4899 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 4900 | PERFORMANCE OF THIS SOFTWARE. |
| 4901 | |
| 4902 | ------------------------------------------------------------------- |
| 4903 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4904 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 4905 | |
| 4906 | Permission to use, copy, modify, and distribute this software for any |
| 4907 | purpose with or without fee is hereby granted, provided that the above |
| 4908 | copyright notice and this permission notice appear in all copies, and that |
| 4909 | the name of Digital Equipment Corporation not be used in advertising or |
| 4910 | publicity pertaining to distribution of the document or software without |
| 4911 | specific, written prior permission. |
| 4912 | |
| 4913 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 4914 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 4915 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 4916 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 4917 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 4918 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 4919 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 4920 | SOFTWARE. |
| 4921 | |
| 4922 | ------------------------------------------------------------------- |
| 4923 | |
| 4924 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 4925 | |
| 4926 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 4927 | permission under its copyrights to use, copy, modify, and distribute this |
| 4928 | Software with or without fee, provided that the above copyright notice and |
| 4929 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 4930 | not be used in connection with the marketing of any product incorporating |
| 4931 | the Software or modifications thereof, without specific, written prior |
| 4932 | permission. |
| 4933 | |
| 4934 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 4935 | under its patents, if any, for the use, sale or manufacture of products to |
| 4936 | the extent that such products are used for performing Domain Name System |
| 4937 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 4938 | granted for any product per se or for any other function of any product. |
| 4939 | |
| 4940 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 4941 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 4942 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 4943 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 4944 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 4945 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 4946 | |
| 4947 | ------------------------------------------------------------------- |
| 4948 | |
| 4949 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 4950 | |
| 4951 | Redistribution and use in source and binary forms, with or without |
| 4952 | modification, are permitted provided that the following conditions |
| 4953 | are met: |
| 4954 | 1. Redistributions of source code must retain the above copyright |
| 4955 | notice, this list of conditions and the following disclaimer. |
| 4956 | 2. Redistributions in binary form must reproduce the above copyright |
| 4957 | notice, this list of conditions and the following disclaimer in the |
| 4958 | documentation and/or other materials provided with the distribution. |
| 4959 | |
| 4960 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 4961 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4962 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4963 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 4964 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4965 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 4966 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 4967 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4968 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4969 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4970 | SUCH DAMAGE. |
| 4971 | |
| 4972 | ------------------------------------------------------------------- |
| 4973 | |
| 4974 | The author of this software is David M. Gay. |
| 4975 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4976 | Copyright (C) 1998 by Lucent Technologies |
| 4977 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4978 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4979 | Permission to use, copy, modify, and distribute this software and |
| 4980 | its documentation for any purpose and without fee is hereby |
| 4981 | granted, provided that the above copyright notice appear in all |
| 4982 | copies and that both that the copyright notice and this |
| 4983 | permission notice and warranty disclaimer appear in supporting |
| 4984 | documentation, and that the name of Lucent or any of its entities |
| 4985 | not be used in advertising or publicity pertaining to |
| 4986 | distribution of the software without specific, written prior |
| 4987 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4988 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4989 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4990 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4991 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4992 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4993 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4994 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4995 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4996 | THIS SOFTWARE. |
| 4997 | |
| 4998 | ------------------------------------------------------------------- |
| 4999 | |
| 5000 | The author of this software is David M. Gay. |
| 5001 | |
| 5002 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5003 | All Rights Reserved |
| 5004 | |
| 5005 | Permission to use, copy, modify, and distribute this software and |
| 5006 | its documentation for any purpose and without fee is hereby |
| 5007 | granted, provided that the above copyright notice appear in all |
| 5008 | copies and that both that the copyright notice and this |
| 5009 | permission notice and warranty disclaimer appear in supporting |
| 5010 | documentation, and that the name of Lucent or any of its entities |
| 5011 | not be used in advertising or publicity pertaining to |
| 5012 | distribution of the software without specific, written prior |
| 5013 | permission. |
| 5014 | |
| 5015 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5016 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5017 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5018 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5019 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5020 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5021 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5022 | THIS SOFTWARE. |
| 5023 | |
| 5024 | ------------------------------------------------------------------- |
| 5025 | |
| 5026 | The author of this software is David M. Gay. |
| 5027 | |
| 5028 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 5029 | All Rights Reserved |
| 5030 | |
| 5031 | Permission to use, copy, modify, and distribute this software and |
| 5032 | its documentation for any purpose and without fee is hereby |
| 5033 | granted, provided that the above copyright notice appear in all |
| 5034 | copies and that both that the copyright notice and this |
| 5035 | permission notice and warranty disclaimer appear in supporting |
| 5036 | documentation, and that the name of Lucent or any of its entities |
| 5037 | not be used in advertising or publicity pertaining to |
| 5038 | distribution of the software without specific, written prior |
| 5039 | permission. |
| 5040 | |
| 5041 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5042 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5043 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5044 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5045 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5046 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5047 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5048 | THIS SOFTWARE. |
| 5049 | |
| 5050 | ------------------------------------------------------------------- |
| 5051 | |
| 5052 | The author of this software is David M. Gay. |
| 5053 | |
| 5054 | Copyright (C) 1998-2000 by Lucent Technologies |
| 5055 | All Rights Reserved |
| 5056 | |
| 5057 | Permission to use, copy, modify, and distribute this software and |
| 5058 | its documentation for any purpose and without fee is hereby |
| 5059 | granted, provided that the above copyright notice appear in all |
| 5060 | copies and that both that the copyright notice and this |
| 5061 | permission notice and warranty disclaimer appear in supporting |
| 5062 | documentation, and that the name of Lucent or any of its entities |
| 5063 | not be used in advertising or publicity pertaining to |
| 5064 | distribution of the software without specific, written prior |
| 5065 | permission. |
| 5066 | |
| 5067 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5068 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5069 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5070 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5071 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5072 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5073 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5074 | THIS SOFTWARE. |
| 5075 | |
| 5076 | ------------------------------------------------------------------- |
| 5077 | |
| 5078 | The author of this software is David M. Gay. |
| 5079 | |
| 5080 | Copyright (C) 1998-2001 by Lucent Technologies |
| 5081 | All Rights Reserved |
| 5082 | |
| 5083 | Permission to use, copy, modify, and distribute this software and |
| 5084 | its documentation for any purpose and without fee is hereby |
| 5085 | granted, provided that the above copyright notice appear in all |
| 5086 | copies and that both that the copyright notice and this |
| 5087 | permission notice and warranty disclaimer appear in supporting |
| 5088 | documentation, and that the name of Lucent or any of its entities |
| 5089 | not be used in advertising or publicity pertaining to |
| 5090 | distribution of the software without specific, written prior |
| 5091 | permission. |
| 5092 | |
| 5093 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5094 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5095 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5096 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5097 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5098 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5099 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5100 | THIS SOFTWARE. |
| 5101 | |
| 5102 | ------------------------------------------------------------------- |
| 5103 | |
| 5104 | The author of this software is David M. Gay. |
| 5105 | |
| 5106 | Copyright (C) 2000 by Lucent Technologies |
| 5107 | All Rights Reserved |
| 5108 | |
| 5109 | Permission to use, copy, modify, and distribute this software and |
| 5110 | its documentation for any purpose and without fee is hereby |
| 5111 | granted, provided that the above copyright notice appear in all |
| 5112 | copies and that both that the copyright notice and this |
| 5113 | permission notice and warranty disclaimer appear in supporting |
| 5114 | documentation, and that the name of Lucent or any of its entities |
| 5115 | not be used in advertising or publicity pertaining to |
| 5116 | distribution of the software without specific, written prior |
| 5117 | permission. |
| 5118 | |
| 5119 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5120 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5121 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5122 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5123 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5124 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5125 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5126 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5127 | |
| 5128 | ------------------------------------------------------------------- |
| 5129 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame^] | 5130 | memchr - find a character in a memory zone |
| 5131 | |
| 5132 | Copyright (c) 2014, ARM Limited |
| 5133 | All rights Reserved. |
| 5134 | Copyright (c) 2014, Linaro Ltd. |
| 5135 | |
| 5136 | Redistribution and use in source and binary forms, with or without |
| 5137 | modification, are permitted provided that the following conditions are met: |
| 5138 | * Redistributions of source code must retain the above copyright |
| 5139 | notice, this list of conditions and the following disclaimer. |
| 5140 | * Redistributions in binary form must reproduce the above copyright |
| 5141 | notice, this list of conditions and the following disclaimer in the |
| 5142 | documentation and/or other materials provided with the distribution. |
| 5143 | * Neither the name of the company nor the names of its contributors |
| 5144 | may be used to endorse or promote products derived from this |
| 5145 | software without specific prior written permission. |
| 5146 | |
| 5147 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5148 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5149 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5150 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5151 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5152 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5153 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5154 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5155 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5156 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5157 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5158 | |
| 5159 | ------------------------------------------------------------------- |
| 5160 | |