HomeSort by relevance Sort by last modified time
    Searched refs:cooked (Results 1 - 13 of 13) sorted by null

  /frameworks/base/services/java/com/android/server/
INativeDaemonConnectorCallbacks.java 23 boolean onEvent(int code, String raw, String[] cooked);
NetworkManagementService.java 169 public boolean onEvent(int code, String raw, String[] cooked) {
177 if (cooked.length < 4 || !cooked[1].equals("Iface")) {
181 if (cooked[2].equals("added")) {
182 notifyInterfaceAdded(cooked[3]);
184 } else if (cooked[2].equals("removed")) {
185 notifyInterfaceRemoved(cooked[3]);
187 } else if (cooked[2].equals("changed") && cooked.length == 5) {
188 notifyInterfaceLinkStatusChanged(cooked[3], cooked[4].equals("up"))
    [all...]
MountService.java 477 public boolean onEvent(int code, String raw, String[] cooked) {
484 if (cooked != null) {
485 builder.append(" cooked = " );
486 for (String str : cooked) {
499 cooked[2], cooked[3], Integer.parseInt(cooked[7]),
500 Integer.parseInt(cooked[10]));
504 if (cooked[5].equals("available")) {
507 notifyShareAvailabilityChange(cooked[3], avail)
    [all...]
  /bionic/libc/kernel/common/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /external/kernel-headers/original/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
efs_fs_i.h 27 } cooked; member in union:extent_u
  /external/libpcap/
pcap-linux.c 398 * If we're in cooked mode, make the snapshot length
399 * large enough to hold a "cooked mode" header plus
403 if (handle->md.cooked) {
477 * If this is a cooked device, leave extra room for a
480 if (handle->md.cooked)
487 * support cooked devices.
579 * If this is a cooked device, fill in the fake packet header.
581 if (handle->md.cooked) {
760 if (handle->md.cooked) {
764 * XXX - how do you send on a bound cooked-mod
    [all...]
pcap-int.h 100 int cooked; /* using SOCK_DGRAM rather than SOCK_RAW */ member in struct:pcap_md

Completed in 322 milliseconds