HomeSort by relevance Sort by last modified time
    Searched defs:Icmp (Results 1 - 5 of 5) sorted by null

  /system/connectivity/shill/
icmp.h 21 #include <linux/icmp.h>
36 // The Icmp class encapsulates the task of sending ICMP frames.
37 class Icmp {
41 Icmp();
42 virtual ~Icmp();
44 // Create a socket for transmission of ICMP frames.
50 // Returns whether an ICMP socket is open.
53 // Send an ICMP Echo Request (Ping) packet to |destination|. The ID and
72 DISALLOW_COPY_AND_ASSIGN(Icmp);
    [all...]
icmp.cc 17 #include "shill/icmp.h"
27 const int Icmp::kIcmpEchoCode = 0; // value specified in RFC 792.
29 Icmp::Icmp()
33 Icmp::~Icmp() {}
35 bool Icmp::Start() {
38 PLOG(ERROR) << "Could not create ICMP socket";
54 void Icmp::Stop() {
59 bool Icmp::IsStarted() const
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/
networkacl.py 30 class Icmp(object):
32 Defines the ICMP code and type.
39 return 'Icmp::code:%s, type:%s)' % ( self.code, self.type)
95 self.icmp = Icmp()
105 return self.icmp
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 114 module Icmp = struct
198 | ICmp
527 external const_icmp : Icmp.t -> llvalue -> llvalue -> llvalue
    [all...]
llvm.mli 165 (** The predicate for an integer comparison ([icmp]) instruction.
167 module Icmp : sig
256 | ICmp (** Other Operators *)
    [all...]

Completed in 556 milliseconds