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

  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_client.c 115 struct radius_rx_handler **handlers, *newh; local
126 newh = os_realloc(*handlers,
128 if (newh == NULL)
131 newh[*num].handler = handler;
132 newh[*num].data = data;
134 *handlers = newh;
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 273 struct radius_rx_handler **handlers, *newh; local
284 newh = os_realloc_array(*handlers, *num + 1,
286 if (newh == NULL)
289 newh[*num].handler = handler;
290 newh[*num].data = data;
292 *handlers = newh;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 559 int newh = height; local
588 bitmap = createBitmap(neww, newh, newConfig, source.hasAlpha());
597 newh = Math.round(deviceR.height());
599 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888 : newConfig,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 920 HeadIndex<K,V> newh = oldh; local
    [all...]

Completed in 194 milliseconds