Searched refs:cooked (Results 1 - 4 of 4) sorted by last modified time

/frameworks/base/services/java/com/android/server/
H A DINativeDaemonConnectorCallbacks.java23 boolean onEvent(int code, String raw, String[] cooked); argument
H A DMountService.java756 public boolean onEvent(int code, String raw, String[] cooked) { argument
761 if (cooked != null) {
762 builder.append(" cooked = " );
763 for (String str : cooked) {
776 cooked[2], cooked[3], Integer.parseInt(cooked[7]),
777 Integer.parseInt(cooked[10]));
785 final String label = cooked[2];
786 final String path = cooked[
[all...]
H A DNetworkManagementService.java402 public boolean onEvent(int code, String raw, String[] cooked) { argument
412 if (cooked.length < 4 || !cooked[1].equals("Iface")) {
416 if (cooked[2].equals("added")) {
417 notifyInterfaceAdded(cooked[3]);
419 } else if (cooked[2].equals("removed")) {
420 notifyInterfaceRemoved(cooked[3]);
422 } else if (cooked[2].equals("changed") && cooked.length == 5) {
423 notifyInterfaceStatusChanged(cooked[
[all...]
H A DNsdService.java500 public boolean onEvent(int code, String raw, String[] cooked) { argument
509 private void handleNativeEvent(int code, String raw, String[] cooked) { argument
511 int id = Integer.parseInt(cooked[1]);
528 servInfo = new NsdServiceInfo(cooked[2], cooked[3], null);
535 servInfo = new NsdServiceInfo(cooked[2], cooked[3], null);
548 servInfo = new NsdServiceInfo(cooked[2], null, null);
567 int index = cooked[2].indexOf(".");
572 String name = cooked[
[all...]

Completed in 48 milliseconds