Searched +full:- +full:- +full:without +full:- +full:host +full:- +full:scanner (Results 1 – 25 of 52) sorted by relevance
123
/external/tensorflow/tensorflow/core/lib/io/ |
D | path.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 29 #include "tensorflow/core/lib/strings/scanner.h" 49 if (result[result.size() - 1] == '/') { in JoinPathImpl() 68 // no "/" in the path, the first part of the output is the scheme and host, and 72 StringPiece scheme, host, path; in SplitPath() local 73 ParseURI(uri, &scheme, &host, &path); in SplitPath() 81 return std::make_pair(StringPiece(uri.begin(), host.end() - uri.begin()), in SplitPath() 87 StringPiece(uri.begin(), path.begin() + 1 - uri.begin()), in SplitPath() 88 StringPiece(path.data() + 1, path.size() - 1)); in SplitPath() [all …]
|
/external/libpcap/ |
D | grammar.y | 4 %pure-parser 7 * We also want a reentrant scanner, so we have to pass the 8 * handle for the reentrant scanner to the parser, and the 12 * versions of Flex and Bison, if you use yyscan_t in %parse-param and 13 * %lex-param, you have to include scanner.h before grammar.h to get 14 * yyscan_t declared, and you have to include grammar.h before scanner.h 18 %parse-param {void *yyscanner} 19 %lex-param {void *yyscanner} 22 * And we need to pass the compiler state to the scanner. 24 %parse-param { compiler_state_t *cstate } [all …]
|
D | scanner.l | 10 * Flex-generated scanners may only include <inttypes.h> if __STDC_VERSION__ 12 * define it with that value, because it isn't 100% C99-compliant, even 14 * scanner needs. 18 * scanner.c, and then include <stdint.h>, which may define them differently 21 * If we include it here, and they're defined, that'll prevent scanner.c 22 * from defining them. So we include <pcap/pcap-inttypes.h>, to get 25 #include <pcap/pcap-inttypes.h> 27 #include "diag-control.h" 31 * We want a reentrant scanner. 36 * And we need to pass the compiler state to the scanner. [all …]
|
D | CMakeLists.txt | 18 # At minimum, we want C++/C99-style // comments. 25 # ourselves on pre-3.1 CMake, so we just do it ourselves on all versions 39 # We don't worry about MSVC; it doesn't have such a flag - either it 43 # XXX - this just tests whether the option works and adds it if it does. 52 string(REPLACE "=" "-" _temp_option_variable ${_option}) 53 string(REGEX REPLACE "^-" "" _option_variable ${_temp_option_variable}) 63 check_and_add_compiler_option("-std=gnu99") 67 # so we use -qlanglvl=extc99. 69 check_and_add_compiler_option("-qlanglvl=extc99") 71 check_and_add_compiler_option("-AC99") [all …]
|
D | scanner.c | 1 #line 2 "scanner.c" 10 * Flex-generated scanners may only include <inttypes.h> if __STDC_VERSION__ 12 * define it with that value, because it isn't 100% C99-compliant, even 14 * scanner needs. 18 * scanner.c, and then include <stdint.h>, which may define them differently 21 * If we include it here, and they're defined, that'll prevent scanner.c 22 * from defining them. So we include <pcap/pcap-inttypes.h>, to get 25 #include <pcap/pcap-inttypes.h> 27 #include "diag-control.h" 29 #line 30 "scanner.c" [all …]
|
D | gencode.c | 6 * Redistribution and use in source and binary forms, with or without 16 * or promote products derived from this software without specific prior 18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 19 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 27 #include <pcap-types.h> 48 #include "pcap-dos.h" 51 #include "pcap-int.h" 66 #include "scanner.h" 82 #define offsetof(s, e) ((size_t)&((s *)0)->e) 163 #include "os-proto.h" [all …]
|
D | configure.ac | 28 # At minimum, we want C++/C99-style // comments. 44 dnl releases without that fix, so that pcap-bpf.c doesn't need to 125 # "getaddrinfo()-ish function". 133 # thread-specific data on many platforms, but doesn't use it on 138 # without it, we can't check which API it has. (We assume that 205 # thread-specific data on many platforms, but doesn't use it on 210 # without it, we can't check which API it has. (We assume that 452 # No - do we have it in -lpthreads? 457 # Yes - add -lpthreads. 460 PTHREAD_LIBS="$PTHREAD_LIBS -lpthreads" [all …]
|
D | nametoaddr.c | 5 * Redistribution and use in source and binary forms, with or without 15 * or promote products derived from this software without specific prior 17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 21 * Name to id translation routines used by the scanner. 42 * https://msdn.microsoft.com/en-us/library/windows/desktop/ms738520(v=vs.85).aspx 136 #include "pcap-int.h" 143 #include "os-proto.h" 152 * Convert host name to internet address. 154 * XXX - not thread-safe; don't use it inside libpcap. [all …]
|
D | grammar.c | 3 /* Bison implementation for Yacc-like parsers in C 5 Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 28 License without this special exception. 34 simplifying the original so-called "semantic" parser. */ 77 * Redistribution and use in source and binary forms, with or without 87 * or promote products derived from this software without specific prior 89 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 90 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 116 #include "diag-control.h" [all …]
|
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.69 for pcap 1.9.0-PRE-GIT. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( [all …]
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/ |
D | SRWebSocket.m | 8 // http://www.apache.org/licenses/LICENSE-2.0 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 55 // 3-7 reserved. 59 // B-F reserved. 72 static NSString *const SRWebSocketAppendToSecKeyString = @"258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; 79 - (NSString *)stringBySHA1ThenBase64Encoding; 86 - (NSString *)stringBySHA1ThenBase64Encoding; 94 // So instead, just map ws -> http and wss -> https. 95 - (NSString *)SR_origin; 125 - (NSString *)stringBySHA1ThenBase64Encoding; [all …]
|
/external/ltp/ |
D | INSTALL | 4 ------------------- 7 2. In order to compile and use ltp-scanner (a utility in the pan directory), 11 - http://ftp.gnu.org/gnu/bison/bison-2.4.1.tar.gz 14 - ftp://invisible-island.net/byacc/byacc.tar.gz 17 - http://downloads.sourceforge.net/project/flex/flex/flex-2.5.33/flex-2.5.33.tar.bz2 20 - http://ftp.gnu.org/gnu/make/make-3.81.tar.bz2 22 If you want to use auto configuration, be sure autoconf-2.61+ & automake-1.10+ 25 automake-1.10.2's sources can be downloaded from: 26 - ftp://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.bz2 27 - ftp://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.gz [all …]
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.4rc1.rst | 5 .. release date: 2017-07-23 20 vulnerabilities including: CVE-2017-9233 (External entity infinite loop 21 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix 22 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 23 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use 24 os-specific entropy sources like getrandom) doesn't impact Python, since Python 32 .. nonce: 1VG7R- 38 ``127.0.0.1`` host, instead of treating ``@evil.com`` as the host in an 39 authentication (``login@host``). 49 Update expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and [all …]
|
D | 3.7.0a1.rst | 2 .. date: 2017-09-05-15-26-30 4 .. release date: 2017-09-19 13 .. date: 2017-08-23-17-02-55 17 Add fuzz tests for float(str), int(str), unicode(str); for oss-fuzz. 22 .. date: 2017-08-16-16-35-59 49 vulnerabilities including: CVE-2017-9233 (External entity infinite loop 50 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix 51 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 52 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use 53 os-specific entropy sources like getrandom) doesn't impact Python, since Python [all …]
|
/external/python/cpython2/Lib/ |
D | pydoc.py | 2 # -*- coding: latin-1 -*- 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines 19 Run "pydoc -p <port>" to start an HTTP server on a given port on the 23 For platforms without a command line, "pydoc -g" starts the HTTP server 26 Run "pydoc -w <name>" to write out the HTML documentation for a module 38 __author__ = "Ka-Ping Yee <ping@lfw.org>" 49 # - imp.load_module() cannot be prevented from clobbering existing 52 # - If the __file__ attribute on a module is a relative path and 68 # --------------------------------------------------------- common routines 120 pre = max(0, (maxlen-3)//2) [all …]
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.15rc1.rst | 2 .. date: 2018-03-05-10-14-42 4 .. release date: 2018-04-14 15 .. date: 2018-03-02-10-24-52 21 refactored. This resolves CVE-2018-1060 and CVE-2018-1061. Patch by Jamie 27 .. date: 2017-09-04-21-24-51 56 vulnerabilities including: CVE-2017-9233 (External entity infinite loop 57 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix 58 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 59 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use 60 os-specific entropy sources like getrandom) doesn't impact Python, since Python [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | TLSMessageChannel.java | 13 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF 14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT 36 * Lamine Brahimi (IBM Zurich) sent in a bug fix - a thread was being uncessarily created. 111 * Constructor - gets called from the SIPStack class with a socket on accepting a new client. 121 * @param msgProcessor -- the message processor that created us. 162 * Constructor - connects to the given inet address. 166 * @param messageProcessor -- the message processor that created us. 279 * Return a formatted message to the client. We try to re-connect with the peer on the other 299 * @param message Pre-formatted message to send. 336 * @param sipMessage -- the message that incurred the error. [all …]
|
D | SIPClientTransaction.java | 13 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF 14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT 70 * Jeff Keyser -- initial. Daniel J. Martinez Manzano --Added support for TLS message channel. 71 * Emil Ivov -- bug fixes. Chris Beardshear -- bug fix. Andreas Bystrom -- bug fixes. Matt Keller 72 * (Motorolla) -- bug fix. 88 * INVITE sent +-----------+ or Transport Err. 89 * +---------| |---------------+inform TU 91 * +-------->| |-------------->| 92 * +-----------+ 2xx | 95 * 300-699 +---------------+ |1xx to TU | [all …]
|
/external/mesa3d/ |
D | .travis.yml | 12 - XORG_RELEASES=http://xorg.freedesktop.org/releases/individual 13 - XCB_RELEASES=http://xcb.freedesktop.org/dist 14 - WAYLAND_RELEASES=http://wayland.freedesktop.org/releases 15 - XORGMACROS_VERSION=util-macros-1.19.0 16 - GLPROTO_VERSION=glproto-1.4.17 17 - DRI2PROTO_VERSION=dri2proto-2.8 18 - LIBPCIACCESS_VERSION=libpciaccess-0.13.4 19 - LIBDRM_VERSION=libdrm-2.4.74 20 - XCBPROTO_VERSION=xcb-proto-1.11 21 - LIBXCB_VERSION=libxcb-1.11 [all …]
|
D | configure.ac | 1 dnl Copyright © 2011-2014 Intel Corporation 2 dnl Copyright © 2011-2014 Emil Velikov <emil.l.velikov@gmail.com> 3 dnl Copyright © 2007-2010 Dan Nicholson 4 dnl Copyright © 2010-2014 Marek Olšák <maraeo@gmail.com> 5 dnl Copyright © 2010-2014 Christian König 6 dnl Copyright © 2012-2014 Tom Stellard <tstellar@gmail.com> 7 dnl Copyright © 2009-2012 Jakob Bornecrantz 8 dnl Copyright © 2009-2014 Jon TURNEY 9 dnl Copyright © 2011-2012 Benjamin Franzke 10 dnl Copyright © 2008-2014 David Airlie [all …]
|
/external/brotli/tests/testdata/ |
D | lcet10.txt | 22 9-10 June 1992 109 C.M. Sperberg-McQueen 154 action-oriented body.(2) 166 * CD-ROM production and dissemination 177 article, or manuscript (including images), and not merely a machine- 178 readable or machine-searchable text. 180 (2) The Workshop was held at the Library of Congress on 9-10 June 191 explained how the concept of a faithful copy and the user-friendliness of 197 high-quality and useful replacements on acid-free paper that should last 212 In part, BATTIN's position reflected the unsettled nature of image-format [all …]
|
/external/python/setuptools/docs/ |
D | easy_install.txt | 11 <http://mail.python.org/pipermail/distutils-sig/>`_. (Note: please DO NOT send 13 mailing list is a searchable archive of previously-asked and answered 15 bug -- and then do so via list discussion first.) 18 own packages work better with EasyInstall, or provide EasyInstall-like features 19 without requiring your users to use EasyInstall directly, you'll probably want 32 ------------------------- 42 are installing to Python's primary ``site-packages`` directory. If this is 48 internet. If you are behind an NTLM-based firewall that prevents Python 54 can restrict it from doing so with the ``--allow-hosts`` option; see the 55 sections on `restricting downloads with --allow-hosts`_ and `command-line [all …]
|
/external/u-boot/ |
D | README | 1 # SPDX-License-Identifier: GPL-2.0+ 3 # (C) Copyright 2000 - 2013 9 This directory contains the source code for U-Boot, a boot loader for 15 The development of U-Boot is closely related to Linux: some parts of 37 scattered throughout the U-Boot source identifying the people or 41 actual U-Boot source tree; however, it can be created dynamically 51 U-Boot, you should send a message to the U-Boot mailing list at 52 <u-boot@lists.denx.de>. There is also an archive of previous traffic 53 on the mailing list - please search the archive before asking FAQ's. 54 Please see http://lists.denx.de/pipermail/u-boot and [all …]
|
/external/python/cpython3/Doc/library/ |
D | re.rst | 1 :mod:`re` --- Regular expression operations 12 -------------- 18 as well as 8-bit strings (:class:`bytes`). 19 However, Unicode strings and 8-bit strings cannot be mixed: 21 vice-versa; similarly, when asking for a substitution, the replacement 25 special forms or to allow special characters to be used without invoking 35 prefixed with ``'r'``. So ``r"\n"`` is a two-character string containing 36 ``'\'`` and ``'n'``, while ``"\n"`` is a one-character string containing a 41 module-level functions and methods on 42 :ref:`compiled regular expressions <re-objects>`. The functions are shortcuts [all …]
|
/external/f2fs-tools/tools/sg_write_buffer/ |
D | sg_lib_data.c | 2 * Copyright (c) 2007-2018 Douglas Gilbert. 4 * Use of this source code is governed by a BSD-style 61 {0x15, 0, "Mode select(6)"}, /* SBC-3 r31 recommends Mode select(10) */ 62 {0x16, 0, "Reserve(6)"}, /* obsolete in SPC-4 r11 */ 64 {0x17, 0, "Release(6)"}, /* obsolete in SPC-4 r11 */ 66 {0x18, 0, "Copy"}, /* obsolete in SPC-4 r11 */ 68 {0x1a, 0, "Mode sense(6)"}, /* SBC-3 r31 recommends Mode sense(10) */ 79 /* SBC-3 r31 recommends Read capacity(16) */ 81 {0x28, 0, "Read(10)"}, /* SBC-3 r31 recommends Read(16) */ 83 {0x2a, 0, "Write(10)"}, /* SBC-3 r31 recommends Write(16) */ [all …]
|
123