Home | History | Annotate | Download | only in audio

Lines Matching defs:hdlr

2432         SetModeDeathHandler hdlr = null;
2437 hdlr = h;
2440 hdlr.getBinder().unlinkToDeath(hdlr, 0);
2449 hdlr = mSetModeDeathHandlers.get(0);
2450 cb = hdlr.getBinder();
2451 mode = hdlr.getMode();
2453 Log.w(TAG, " using mode=" + mode + " instead due to death hdlr at pid="
2454 + hdlr.mPid);
2458 if (hdlr == null) {
2459 hdlr = new SetModeDeathHandler(cb, pid);
2463 cb.linkToDeath(hdlr, 0);
2471 mSetModeDeathHandlers.add(0, hdlr);
2472 hdlr.setMode(mode);
2481 if (hdlr != null) {
2482 mSetModeDeathHandlers.remove(hdlr);
2483 cb.unlinkToDeath(hdlr, 0);