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

  /external/dnsmasq/src/
cache.c 19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL;
21 static struct crec *dhcp_spare = NULL;
23 static struct crec *new_chain = NULL;
67 static void cache_free(struct crec *crecp);
68 static void cache_unlink(struct crec *crecp);
69 static void cache_link(struct crec *crecp);
71 static void cache_hash(struct crec *crecp);
75 struct crec *crecp;
85 crecp = safe_malloc(daemon->cachesize*sizeof(struct crec));
105 struct crec **new, **old, *p, *tmp
1038 struct crec *crec = NULL, *aliasc; local
    [all...]
dhcp.c 700 struct crec *crec; local
711 (crec = cache_find_by_name(NULL, config->hostname, 0, F_IPV4)) &&
712 (crec->flags & F_HOSTS))
714 if (cache_find_by_name(crec, config->hostname, 0, F_IPV4))
717 while (crec && !(crec->flags & F_REVERSE))
718 crec = cache_find_by_name(crec, config->hostname, 0, F_IPV4);
719 if (!crec)
    [all...]
dnsmasq.h 254 struct crec { struct
255 struct crec *next, *prev, *hash_next;
261 struct crec *cache;
654 struct crec *cache_find_by_addr(struct crec *crecp,
657 struct crec *cache_find_by_name(struct crec *crecp,
661 struct crec *cache_insert(char *name, struct all_addr *addr,
667 char *cache_get_name(struct crec *crecp);
rfc1035.c 663 struct crec *cpp = NULL;
746 struct crec *newc;
948 struct crec *crecp;
1120 static unsigned long crec_ttl(struct crec *crecp, time_t now)
1145 struct crec *crecp;
    [all...]
  /external/skia/src/c/
sk_surface.cpp 189 static SkPictureRecorder* AsPictureRecorder(sk_picture_recorder_t* crec) {
190 return reinterpret_cast<SkPictureRecorder*>(crec);
475 void sk_picture_recorder_delete(sk_picture_recorder_t* crec) {
476 delete AsPictureRecorder(crec);
479 sk_canvas_t* sk_picture_recorder_begin_recording(sk_picture_recorder_t* crec,
481 return ToCanvas(AsPictureRecorder(crec)->beginRecording(AsRect(*cbounds)));
484 sk_picture_t* sk_picture_recorder_end_recording(sk_picture_recorder_t* crec) {
485 return ToPicture(AsPictureRecorder(crec)->finishRecordingAsPicture().release());
  /external/skqp/src/c/
sk_surface.cpp 189 static SkPictureRecorder* AsPictureRecorder(sk_picture_recorder_t* crec) {
190 return reinterpret_cast<SkPictureRecorder*>(crec);
475 void sk_picture_recorder_delete(sk_picture_recorder_t* crec) {
476 delete AsPictureRecorder(crec);
479 sk_canvas_t* sk_picture_recorder_begin_recording(sk_picture_recorder_t* crec,
481 return ToCanvas(AsPictureRecorder(crec)->beginRecording(AsRect(*cbounds)));
484 sk_picture_t* sk_picture_recorder_end_recording(sk_picture_recorder_t* crec) {
485 return ToPicture(AsPictureRecorder(crec)->finishRecordingAsPicture().release());

Completed in 661 milliseconds