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